@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Cairo', sans-serif;
  background: linear-gradient(135deg, #f9f9f9, #eef3f7);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  direction: rtl;
  padding: 20px;
}

.container {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 40px 30px;
  max-width: 450px;
  width: 100%;
  text-align: center;
  transition: 0.3s ease;
}

.logo-section {
  margin-bottom: 15px;
}

.logo {
  width: 90px;
}

.title {
  color: #007b83;
  font-size: 28px;
  margin-bottom: 10px;
}

.intro {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
}

.features {
  text-align: right;
  margin-bottom: 20px;
}

.features h3 {
  color: #007b83;
  font-size: 18px;
  margin-bottom: 10px;
}

.features ul {
  list-style: none;
}

.features li {
  background: #f3f8fa;
  padding: 10px 12px;
  border-radius: 10px;
  margin: 6px 0;
  font-size: 15px;
}

.cta-text {
  font-weight: bold;
  color: #222;
  margin: 20px 0;
}

.card-img img {
  width: 200px;
  margin: 10px 0 20px;
}

.cta-button {
  background: #007b83;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #009ea3;
}

/* ============================= */
/* 📱 Responsive Design          */
/* ============================= */

/* Tablets (portrait and small laptops) */
@media (max-width: 992px) {
  .container {
    max-width: 500px;
    padding: 35px 25px;
  }

  .title {
    font-size: 26px;
  }

  .intro, .features li {
    font-size: 15px;
  }

  .cta-button {
    font-size: 15px;
    padding: 12px 25px;
  }
}

/* Mobile phones */
@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .logo {
    width: 70px;
  }

  .title {
    font-size: 22px;
  }

  .intro {
    font-size: 14px;
  }

  .features li {
    font-size: 14px;
    padding: 8px;
  }

  .card-img img {
    width: 160px;
  }

  .cta-button {
    width: 100%;
    padding: 12px;
  }
}

/* Larger screens */
@media (min-width: 1200px) {
  .container {
    max-width: 550px;
  }

  .title {
    font-size: 30px;
  }
}

/* ============================= */
/* 🔐 Login Page Styles */
/* ============================= */

.login-container {
  max-width: 400px;
  padding: 40px 30px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

.top-bar .icon {
  font-size: 18px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.login-form input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.login-form input:focus {
  border-color: #007b83;
  box-shadow: 0 0 0 2px rgba(0, 123, 131, 0.15);
}

.forgot-password {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  color: #555;
}

.forgot-password a {
  color: #007b83;
  text-decoration: none;
}

.register {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
}

.register a {
  color: #007b83;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .login-container {
    padding: 30px 20px;
  }

  .login-form input {
    font-size: 14px;
    padding: 10px;
  }

  .cta-button {
    font-size: 15px;
    padding: 12px;
  }
}

/* ============================= */
/* ✅ Verification Page Styles */
/* ============================= */

.verify-container {
  max-width: 380px;
  padding: 40px 30px;
}

.verify-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.verify-form input {
  padding: 14px;
  border: 2px solid #d9534f; /* red border */
  border-radius: 10px;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  outline: none;
  text-align: center;
  transition: 0.3s;
}

.verify-form input:focus {
  border-color: #007b83;
  box-shadow: 0 0 0 2px rgba(0, 123, 131, 0.15);
}

.timer {
  background: #fff;
  border-radius: 4px;
  padding: 3px 8px;
  font-weight: bold;
  font-size: 16px;
  margin-right: 4px;
}

/* Adjust for smaller devices */
@media (max-width: 600px) {
  .verify-container {
    padding: 30px 20px;
  }

  .verify-form input {
    font-size: 14px;
    padding: 12px;
  }

  .verify-btn {
    font-size: 15px;
    padding: 12px;
  }

  .timer {
    font-size: 14px;
  }
}
 .lds-default {
            display: inline-block;
            position: relative;
            width: 7%;
            height: 80px;
            right: 10%;

        }

        .lds-default div {
            position: absolute;
            width: 6px;
            height: 6px;
            background: black;
            border-radius: 50%;
            animation: lds-default 1.2s linear infinite;
        }

        .lds-default div:nth-child(1) {
            animation-delay: 0s;
            top: 37px;
            left: 66px;
            background-color: #b51647;
        }

        .lds-default div:nth-child(2) {
            animation-delay: -0.1s;
            top: 22px;
            left: 62px;
            background-color: #b51647;
        }

        .lds-default div:nth-child(3) {
            animation-delay: -0.2s;
            top: 11px;
            left: 52px;
            background-color: #b51647;
        }

        .lds-default div:nth-child(4) {
            animation-delay: -0.3s;
            top: 7px;
            left: 37px;
            background-color: #b51647;
        }

        .lds-default div:nth-child(5) {
            animation-delay: -0.4s;
            top: 11px;
            left: 22px;
            background-color: #b51647;
        }

        .lds-default div:nth-child(6) {
            animation-delay: -0.5s;
            top: 22px;
            left: 11px;
            background-color: #b51647;
        }

        .lds-default div:nth-child(7) {
            animation-delay: -0.6s;
            top: 37px;
            left: 7px;
            background-color: #b51647;
        }

        .lds-default div:nth-child(8) {
            animation-delay: -0.7s;
            top: 52px;
            left: 11px;
            background-color: #b51647;
        }

        .lds-default div:nth-child(9) {
            animation-delay: -0.8s;
            top: 62px;
            left: 22px;
            background-color: #b51647;
        }

        .lds-default div:nth-child(10) {
            animation-delay: -0.9s;
            top: 66px;
            left: 37px;
            background-color: #b51647;
        }

        .lds-default div:nth-child(11) {
            animation-delay: -1s;
            top: 62px;
            left: 52px;
            background-color: #b51647;
        }

        .lds-default div:nth-child(12) {
            animation-delay: -1.1s;
            top: 52px;
            left: 62px;
            background-color: #b51647;
        }

        @keyframes lds-default {

            0%,
            20%,
            80%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.5);
            }
        }

        .text-primary {
            color: #c5006e !important;
        }