* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
form {
  position: relative;
  height: 100%;
  font-family: 'Tajawal', sans-serif;
}

body {
  background: #ffffff;
  color: #000;
}

.auth_swiper-container {
  width: 100%;
  height: 100%;
}

.auth_swiper-slide {
  text-align: center;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(10px, 5vw, 20px);
  position: relative;
}

.auth_swiper-slide h1 {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 700;
  margin-bottom: clamp(8px, 2vw, 16px);
  color: #000;
}

.auth_swiper-slide p {
  font-size: clamp(14px, 3vw, 17px);
  color: #666;
  margin-bottom: clamp(16px, 4vw, 24px);
  width: 90%;
  max-width: 600px;
}

.auth_swiper-slide input {
  width: 90%;
  max-width: 500px;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ebebeb;
  border-radius: 25px;
  margin-bottom: 20px;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.3s ease-in-out;
  direction: rtl;
  font-family: 'Tajawal', sans-serif;
}

.auth_swiper-slide input:focus {
  border-color: rgb(4, 110, 250);
  box-shadow: 0 0 10px rgba(4, 110, 250, 0.5);
  outline: none;
}

.auth_swiper-slide button {
  background: none;
  color: rgb(4, 110, 250);
  border: none;
  font-size: clamp(14px, 3vw, 17px);
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
  border-radius: 25px;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  font-family: 'Tajawal', sans-serif;
}

.auth_button-container {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
}

.auth_skip-button {
  color: #666 !important;
}

.auth_swiper-slide button:active {
  opacity: 0.7;
  background-color: rgba(202, 202, 202, 0.3);
}

.auth_swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
}

/* From Uiverse.io by Xtenso */ 
.filter-switch {
  border: 2px solid #ffc000;
  border-radius: 30px;
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  width: 300px;
  overflow: hidden;
}
.filter-switch input {
  display: none;
}
.filter-switch label {
  flex: 1;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s;
  font-weight: 500;
  font-size: 18px;
}
.filter-switch .background {
  position: absolute;
  width: 49%;
  height: 38px;
  background-color: #ffc000;
  top: 4px;
  left: 4px;
  border-radius: 30px;
  transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#female:checked ~ .background {
  left: 50%;
}
#male:checked + label[for="male"] {
  color: #212121;
  font-weight: bold;
}
#female:checked + label[for="female"] {
  color: #212121;
  font-weight: bold;
}
#male:not(:checked) + label[for="male"],
#female:not(:checked) + label[for="female"] {
  color: #7d7d7d;
}

/************  sweet alert **************/
.custom-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  font-family: 'Tajawal', sans-serif;
  animation: slideIn 0.5s ease-out forwards;
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.toast-title {
  color: #c52a6b;
  font-weight: bold;
  font-size: 16px;
}

.toast-message {
  color: #333;
  font-size: 14px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/************ splash page **************/
* {
  user-select: none;
}

.sph-body {
  background: #eee;
  font-family: 'Tajawal', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.sph-swiper-container {
  width: 100%;
  height: 100%;
}

.sph-swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sph-swiper-slide img {
  display: block;
  width: auto;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}

.sph-swiper-slide h2 {
  font-size: 24px;
  color: #c4086f;
}

.sph-swiper-slide p {
  font-size: 18px;
  color: #000;
  margin: 5px;
}

.sph-button-continue {
  font-size: 18px;
  margin-bottom: 15px;
  width: 150px;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #DB075E, #ff4081);
  color: #fff;
  position: absolute;
  bottom: 20px;
  font-family: 'Tajawal', Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 550;
}

.sph-heading {
  font-size: 24px;
  color: #c4086f;
  margin-bottom: 10px;
}

.sph-swiper-slide a {
  text-decoration: none;
  color: #a11b8b;
  font-weight: 550;
}

.sph-swiper-slide h6 {
  font-size: 14px;
  color: #a1451b;
  font-weight: 550;
  position: absolute;
  bottom: 20px;
}


.sph-auth-button {
  max-width: 320px;
  display: flex;
  padding: 0.5rem 1.4rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  align-items: center;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  gap: 0.75rem;
  color: rgb(65, 63, 63);
  background-color: #fff;
  cursor: pointer;
  transition: all .6s ease;
  font-family: 'Tajawal', Helvetica Neue, Helvetica, Arial, sans-serif;
  direction: rtl;
  margin-bottom: 10px;
  width: 350px;
  height: 50px;
}

.sph-auth-button svg {
  height: 24px;
}

.sph-auth-button:hover {
  transform: scale(1.02);
}
  


.sph-fast-signup-button {
    max-width: 320px;
    display: flex;
    padding: 0.5rem 1.4rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    align-items: center;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    gap: 0.75rem;
    color: rgb(255, 255, 255);
    background: linear-gradient(45deg, #DB075E, #ff4081);
    cursor: pointer;
    transition: all .6s ease;
    font-family: 'Tajawal', Helvetica Neue, Helvetica, Arial, sans-serif;
    direction: rtl;
    margin-bottom: 10px;
    width: 350px;
    height: 50px;
  }

  