

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-create-account {
  margin-top: 40px;
  text-align: right;
  flex: 1;
}

.create-content {
  margin-top: 90px;
}

.create-content h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "DG-3asomy-Regular";
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 11px;
  color: var(--color-red-black);
}

.create-content h3 span {
    color: var(--color-gray);

}

.create-content .info {
  color: var(--bluedark-color);
  font-family: "El Messiri";
  font-weight: bold;
  margin-top: 25px;
}

.create-content form label {
  color: var(--color-red-black);
  font-family: "LamaSans-bold";
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 8px;
}


.create-content form input {
  display: block;
  font-family: "lemonada";
  color: var(--color-gray);
  font-size: 15px;
  margin-bottom: 8px;
  width: 100%;
  padding: 4px 10px;
  border: 2px var(--color-gray) solid;
  border-radius: 10px;
  outline: none;
}

.create-content form input:focus {
  outline: none;
  /* box-shadow: 0 0px 2px var(--bluelight-color); */
  border-color: var(--color-red-black);
  /* border-style: dashed; */
}

.create-content form input[type="submit"] {
  font-family: "DG-3asomy-Regular";
  text-decoration: none !important;
  background: var(--color-gray);
  padding: 5px 10px;
  border-radius: 15px;
  color: var(--color-white);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-bottom: 3px var(--color-black) solid;
  transition: all linear 0.2s;
  width: 100%;
}

.create-content form input[type="submit"]:hover {
  color: var(--color-gray);
  background: var(--color-white);
  /* border: 3px var(--bluelight-color) solid; */
}

.create-content form .forget-password,
.create-content .new-account {
  font-family: "lemonada";
  font-weight: bold;
  margin-top: 17px;
  font-size: 13px;
  color: var(--color-red-black);
}

.create-content form .forget-password a,
.create-content .new-account a {
  color: var(--color-gray);
}

.create-content form .forget-password a:hover,
.create-content .new-account a:hover {
  color: var(--color-black);
  text-decoration: none;
}

.create-content .password {
  display: flex;
  justify-content: space-between;
  margin: 10px 0px;
  gap: 15px;
}

@media only screen and (max-width: 575px) {
  .create-content .password {
    flex-direction: column;
  }
}

.error-message {
  background: var(--red-color);
  font-family: "Expo Arabic Book";
  color: var(--color-white);
  background: var(--color-red-black);
  padding: 5px 6px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.main-create-account .login-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-create-account .login-img img {
  width: 100%;
}

/* SweetAlert Custom Styles */


.swal-custom-popup {
  font-family: "lemonada", sans-serif;
  border-radius: 19px;
}
.swal2-popup {
  font-family: "lemonada", sans-serif !important;
  border-radius: 30px !important;
  border: 3px solid var(--color-white); 

}
.swal2-title {
  font-family: "DG-3asomy-Regular", sans-serif !important;
  font-size: 23px !important;
  color: var(--color-red-black);
}
.swal2-content {
  font-family: "LamaSans-Bold", sans-serif !important;
  font-size: 16px !important;
}

.swal2-confirm {
  border-radius: 20px;
  color: var(--color-gray);
}


/* Custom Dropdown Styles for Create Account */
.custom-dropdowns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px;
  background: var(--color-red-black);
  border-radius: 15px;
  font-family: "LamaSans-Bold", sans-serif;
  width: fit-content;
  margin: auto;
  text-align: right;
}

.custom-dropdown {
  position: relative;
  cursor: pointer;
  width: fit-content;
}

.custom-dropdown .selected {
  padding: 6px;
  padding-left: 35px;
  padding-right: 10px;
  background: var(--color-white);
  border-radius: 30px;
  position: relative;
  font-size: 14px;
  color: var(--color-black);
  border: 2px solid transparent;
  transition: 0.3s;
  text-align: center;
  width: fit-content;
}

@media only screen and (max-width: 400px) {
  .custom-dropdowns .selected {
    font-size: 12px;
  }
}

.custom-dropdown .selected::before {
  content: "\f13a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray);
  font-size: 20px;
  transition: 0.3s;
}

.custom-dropdown.active-select .selected {
  border-color: var(--color-gray);
}

.custom-dropdown.active-select .selected::before {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  max-height: 0;
  transition: max-height 0.3s ease;
  z-index: 10;
}

.custom-dropdown.active-select .dropdown-options {
  max-height: 300px;
  overflow: auto;
  width: 100%;
}

.dropdown-options li {
  padding: 10px 15px;
  transition: 0.2s;
  font-size: 14px;
}

@media only screen and (max-width: 400px) {
  .dropdown-options li {
    font-size: 12px;
  }
}

.dropdown-options li:hover {
  background: var(--color-gray);
  color: var(--color-white);
}
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  direction: rtl;
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--color-red-black);
}

.toggle-password {
  position: absolute;
  left: 15px;
  top: calc(50% - 14px);
  cursor: pointer;
  color: var(--color-gray);
  transition: color 0.3s ease;
  font-size: 18px;
}

.toggle-password:hover {
  color: var(--color-red-black);
}
