@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Vend+Sans:ital,wght@0,300..700;1,300..700&display=swap");
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F7F9FB;
  --accent: #6978FF;
  --accent-glow: rgba(105, 120, 255, 0.15);
  --text-primary: #0D1117;
  --text-secondary: #4B5563;
  --text-tertiary: #6B7280;
  --card-bg: rgba(255, 255, 255, 0.85);
  --border: #E5E7EB;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.08);
  --glass: rgba(255, 255, 255, 0.7);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ghost-color: #FFFFFF;
  --ghost-shadow: rgba(105, 120, 255, 0.2);
}

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

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.08) inset;
  -webkit-text-fill-color: #000000;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}

body {
  width: 100vw;
  height: 100svh;
  overflow: hidden;
}

.gradient-text,
.gradient-text * {
  background: linear-gradient(90deg, #052d8d, #6978ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hidden {
  display: none;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #e62727;
  padding: 14px 16px;
  border-radius: 10px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 16px;
  font-family: "Gabarito", sans-serif;
}

.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #12aa4a;
  padding: 14px 16px;
  border-radius: 10px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-family: "Gabarito", sans-serif;
}

.loginpage {
  width: 100vw;
  height: 100vh;
  padding: 30px;
  background: #f3f3f3;
}
.loginpage .login-wrap {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  display: flex;
  box-shadow: 0 0 15px 15px rgba(125, 125, 125, 0.286);
  align-items: center;
  background: white;
  border: 1px solid rgba(152, 152, 152, 0.573);
}
.loginpage .login-wrap .left {
  width: calc(100% - 500px);
  height: 100%;
  background: #e8faff;
  background: linear-gradient(132deg, rgba(232, 250, 255, 0.84) 0%, rgba(255, 209, 253, 0.37) 100%);
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
.loginpage .login-wrap .left .left-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loginpage .login-wrap .left .left-wrap .ghosts {
  width: 100%;
  height: 80%;
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap .platform {
  width: 850px;
  height: 200px;
  border-radius: 43% 57% 74% 26%/28% 27% 73% 72%;
  position: absolute;
  background: #bdecff;
  background: linear-gradient(90deg, rgba(189, 236, 255, 0.86) 0%, rgba(125, 212, 255, 0.94) 100%);
  bottom: 0;
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap .eyes {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap .eyes:hover .eye {
  transition: 0.5s ease;
  height: 5px;
  overflow: hidden;
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap .eyes .eye {
  width: 75px;
  height: 65px;
  border-radius: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease-out;
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap .eyes .eye.close {
  height: 2px;
  transition: 0.5s ease-out;
  overflow: hidden;
  animation: none;
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap .eyes .eye .pupil {
  width: 30px;
  height: 30px;
  border-radius: 101px;
  background-color: #000;
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap .ghost1 {
  width: 190px;
  height: 220px;
  left: 141px;
  clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 100%, 75% 85%, 51% 100%, 24% 86%, 0 100%, 0% 35%, 20% 10%);
  background: #ffabd9;
  position: absolute;
  background: linear-gradient(90deg, rgb(255, 171, 217) 0%, rgb(255, 159, 135) 99%);
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap .ghost2 {
  width: 203px;
  height: 358px;
  position: absolute;
  left: 296px;
  clip-path: polygon(35% 10%, 77% 0, 100% 100%, 0% 100%);
  background: #ebffab;
  background: linear-gradient(90deg, rgb(235, 255, 171) 0%, rgb(255, 255, 191) 99%);
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap .ghost3 {
  width: 199px;
  height: 220px;
  left: 430px;
  bottom: 105px;
  z-index: 2;
  clip-path: polygon(29% 0, 80% 0, 100% 27%, 81% 60%, 100% 100%, 0 100%, 25% 57%, 0 28%);
  background: #abdcff;
  position: absolute;
  background: linear-gradient(90deg, rgb(171, 220, 255) 0%, rgb(191, 191, 255) 99%);
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap .ghost4 {
  width: 220px;
  height: 220px;
  left: 549px;
  bottom: 243px;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  background: #e3abff;
  position: absolute;
  background: linear-gradient(90deg, rgb(227, 171, 255) 0%, rgb(255, 204, 191) 99%);
}
.loginpage .login-wrap .left .left-wrap .ghosts .ghosts-wrap .ghost5 {
  width: 280px;
  height: 220px;
  left: 626px;
  bottom: 101px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: #bcffab;
  position: absolute;
  background: linear-gradient(90deg, rgb(188, 255, 171) 0%, rgb(115, 224, 103) 99%);
}
.loginpage .login-wrap .right {
  width: 500px;
  height: 100%;
}
.loginpage .login-wrap .right .right-wrap {
  padding: 25px;
  overflow-x: hidden;
  overflow-y: auto;
}
.loginpage .login-wrap .right .right-wrap .log-head {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.loginpage .login-wrap .right .right-wrap .log-head img {
  width: 150px;
}
.loginpage .login-wrap .right .right-wrap .log-head h3 {
  font-size: 2em;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.loginpage .login-wrap .right .right-wrap form {
  margin: 30px 0;
}
.loginpage .login-wrap .right .right-wrap form .form-group {
  margin-bottom: 24px;
  position: relative;
}
.loginpage .login-wrap .right .right-wrap form .form-group .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-family: "Gabarito", sans-serif;
  color: var(--text-primary);
  font-size: 1em;
}
.loginpage .login-wrap .right .right-wrap form .form-group .input-with-icon {
  position: relative;
}
.loginpage .login-wrap .right .right-wrap form .form-group .input-with-icon .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: black;
  font-size: 18px;
}
.loginpage .login-wrap .right .right-wrap form .form-group .input-with-icon .form-input {
  width: 100%;
  padding: 10px 10px 10px 50px;
  border: 3px solid black;
  font-size: 16px;
  font-family: "Gabarito", sans-serif;
  transition: var(--transition);
  background: white;
}
.loginpage .login-wrap .right .right-wrap form .form-group .input-with-icon .form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: white;
}
.loginpage .login-wrap .right .right-wrap form .form-group .input-with-icon .password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  font-size: 18px;
}
.loginpage .login-wrap .right .right-wrap form .login-button {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(105, 120, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.loginpage .login-wrap .right .right-wrap form .login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(105, 120, 255, 0.4);
}
.loginpage .login-wrap .right .right-wrap .divider {
  display: flex;
  align-items: center;
  margin: 32px 0;
  color: var(--text-tertiary);
  font-size: 14px;
}
.loginpage .login-wrap .right .right-wrap .divider::before, .loginpage .login-wrap .right .right-wrap .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.loginpage .login-wrap .right .right-wrap .divider span {
  padding: 0 16px;
  font-family: "Gabarito", sans-serif;
}
.loginpage .login-wrap .right .right-wrap .social-login {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.loginpage .login-wrap .right .right-wrap .social-login .social-button {
  flex: 1;
  padding: 14px;
  border: 3px solid black;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  color: var(--text-primary);
  font-family: "Gabarito", sans-serif;
  font-weight: 600;
}
.loginpage .login-wrap .right .right-wrap .social-login .social-button:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.loginpage .login-wrap .right .right-wrap .social-login .social-button i {
  font-size: 18px;
}
.loginpage .login-wrap .right .right-wrap .signup-link {
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
}
.loginpage .login-wrap .right .right-wrap .signup-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition: var(--transition);
}
.loginpage .login-wrap .right .right-wrap .signup-link a:hover {
  text-decoration: underline;
}
.loginpage .login-wrap .right .right-wrap .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.loginpage .login-wrap .right .right-wrap .form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}
.loginpage .login-wrap .right .right-wrap .form-options .remember-me label {
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: "Gabarito", sans-serif;
}
.loginpage .login-wrap .right .right-wrap .form-options .remember-me input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.loginpage .login-wrap .right .right-wrap .form-options .forgot-password {
  font-size: 16px;
  font-family: "Gabarito", sans-serif;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.loginpage .login-wrap .right .right-wrap .form-options .forgot-password:hover {
  text-decoration: underline;
}
.loginpage .login-wrap .right .right-wrap .otp-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 0;
  max-width: 420px;
}
.loginpage .login-wrap .right .right-wrap .otp-form input[type=hidden] {
  display: none;
}
.loginpage .login-wrap .right .right-wrap .otp-form .otp-inputs {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}
.loginpage .login-wrap .right .right-wrap .otp-form .otp-inputs .otp-input {
  width: 52px;
  height: 64px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  border-radius: 12px;
  border: 1.5px solid #8e8e8e;
  background: rgba(239, 239, 239, 0.3960784314);
  color: #111827;
  transition: all 0.25s ease;
}
.loginpage .login-wrap .right .right-wrap .otp-form .otp-inputs .otp-input:focus {
  outline: none;
  border-color: #6366f1;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.loginpage .login-wrap .right .right-wrap .otp-form .otp-inputs .otp-input:hover {
  border-color: #c7d2fe;
}
.loginpage .login-wrap .right .right-wrap .otp-form .verify-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.loginpage .login-wrap .right .right-wrap .otp-form .verify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.35);
}
.loginpage .login-wrap .right .right-wrap .otp-form .verify-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(99, 102, 241, 0.25);
}
.loginpage .login-wrap .right .right-wrap .otp-form .verify-btn span.material-symbols-outlined {
  font-size: 20px;
}
.loginpage .login-wrap .right .right-wrap .otp-form-options .back-button {
  width: 100%;
  padding: 10px;
  max-width: 420px;
  background: white;
  border: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  text-decoration: none;
  gap: 15px;
  font-family: "Gabarito", sans-serif;
}
.loginpage .login-wrap .right .right-wrap .otp-form-options .back-button:hover {
  border: 2px solid #052d8d;
  color: #052d8d;
  transition: 0.5s ease;
  translate: 0 -5px 0;
  cursor: pointer;
}
.loginpage .login-wrap .right .right-wrap .otp-header {
  margin: 30px 0;
}
.loginpage .login-wrap .right .right-wrap .otp-header .otp-icon {
  display: flex;
  align-items: center;
  gap: 25px;
}
.loginpage .login-wrap .right .right-wrap .otp-header .otp-icon h1 {
  font-family: "Gabarito", sans-serif;
  font-size: 1.5rem;
}
.loginpage .login-wrap .right .right-wrap .otp-header .otp-subtitle {
  font-family: "Gabarito", sans-serif;
  font-size: 1.2rem;
  margin-top: 10px;
}
.loginpage .login-wrap .right .right-wrap .forgot-header {
  margin: 30px 0;
}
.loginpage .login-wrap .right .right-wrap .forgot-header .forgot-icon {
  display: flex;
  align-items: center;
  gap: 25px;
}
.loginpage .login-wrap .right .right-wrap .forgot-header .forgot-icon h1 {
  font-family: "Gabarito", sans-serif;
  font-size: 1.5rem;
}
.loginpage .login-wrap .right .right-wrap .forgot-header .forgot-subtitle {
  font-family: "Gabarito", sans-serif;
  font-size: 1.2rem;
  margin-top: 10px;
}
.loginpage .login-wrap .right .right-wrap .email-display {
  font-family: "Gabarito", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.loginpage .login-wrap .right .right-wrap .resend-otp {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 12px;
}
.loginpage .login-wrap .right .right-wrap .resend-otp .resend-text {
  font-size: 14px;
  font-family: "Gabarito", sans-serif;
  color: #6b7280;
}
.loginpage .login-wrap .right .right-wrap .resend-otp .resend-link {
  margin-left: 4px;
  font-weight: 500;
  color: #6366f1;
  font-family: "Gabarito", sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s ease;
}
.loginpage .login-wrap .right .right-wrap .resend-otp .resend-link:hover {
  color: #4338ca;
  text-decoration: underline;
}
.loginpage .login-wrap .right .right-wrap .resend-otp .timer {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  color: #dc2626;
}

@keyframes eyeclose {
  0% {
    height: 65px;
  }
  100% {
    height: 3px;
    overflow: hidden;
  }
  0% {
    height: 65px;
  }
  88.235% {
    height: 65px;
  }
  /* 30 seconds mark in a 34s animation */
  94.117% {
    height: 3px;
    overflow: hidden;
  }
  /* 32 seconds mark */
  100% {
    height: 65px;
  }
  /* 34 seconds mark */
}
@keyframes shake {
  0% {
    rotate: -10deg;
    scale: 1.03;
    background: rgb(206, 64, 64);
  }
  50% {
    rotate: 0deg;
    scale: 1;
  }
  100% {
    rotate: 10deg;
    scale: 1.03;
    background: rgb(213, 45, 45);
  }
}
/* ================================
   TABLET (768px – 1199px)
================================ */
@media (max-width: 1199px) {
  .loginpage {
    padding: 20px;
  }
  .loginpage .login-wrap {
    flex-direction: row;
  }
  .loginpage .login-wrap .left {
    width: calc(100% - 420px);
  }
  .loginpage .login-wrap .left .ghosts {
    height: 70%;
  }
  .loginpage .login-wrap .left .ghosts .ghosts-wrap .platform {
    width: 600px;
    height: 150px;
  }
  .loginpage .login-wrap .left .ghosts .ghosts-wrap .eye {
    width: 60px;
    height: 55px;
  }
  .loginpage .login-wrap .left .ghosts .ghosts-wrap .eye .pupil {
    width: 24px;
    height: 24px;
  }
  .loginpage .login-wrap .left .ghosts .ghosts-wrap .ghost1,
  .loginpage .login-wrap .left .ghosts .ghosts-wrap .ghost2,
  .loginpage .login-wrap .left .ghosts .ghosts-wrap .ghost3,
  .loginpage .login-wrap .left .ghosts .ghosts-wrap .ghost4,
  .loginpage .login-wrap .left .ghosts .ghosts-wrap .ghost5 {
    transform: scale(0.85);
  }
  .loginpage .login-wrap .right {
    width: 420px;
  }
  .loginpage .login-wrap .right .right-wrap {
    padding: 20px;
  }
}
/* ================================
   MOBILE (≤767px)
================================ */
@media (max-width: 767px) {
  .loginpage {
    padding: 0;
    height: auto;
    height: 100vh;
  }
  .loginpage .login-wrap {
    flex-direction: column;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    /* 🔥 Hide illustration completely */
  }
  .loginpage .login-wrap .left {
    display: none;
  }
  .loginpage .login-wrap .right {
    width: 100%;
    height: auto;
  }
  .loginpage .login-wrap .right .right-wrap {
    padding: 20px 16px;
    /* OTP FORM */
  }
  .loginpage .login-wrap .right .right-wrap .log-head {
    align-items: center;
    text-align: center;
  }
  .loginpage .login-wrap .right .right-wrap .log-head img {
    width: 120px;
  }
  .loginpage .login-wrap .right .right-wrap .log-head h3 {
    font-size: 1.6em;
  }
  .loginpage .login-wrap .right .right-wrap form {
    margin: 20px 0;
  }
  .loginpage .login-wrap .right .right-wrap form .form-group {
    margin-bottom: 18px;
  }
  .loginpage .login-wrap .right .right-wrap form .form-group .form-label {
    font-size: 0.95rem;
  }
  .loginpage .login-wrap .right .right-wrap form .form-group .input-with-icon .form-input {
    font-size: 15px;
    padding: 12px 12px 12px 44px;
  }
  .loginpage .login-wrap .right .right-wrap form .form-group .input-with-icon .input-icon {
    left: 12px;
    font-size: 16px;
  }
  .loginpage .login-wrap .right .right-wrap form .login-button {
    padding: 14px;
    font-size: 15px;
  }
  .loginpage .login-wrap .right .right-wrap .social-login {
    flex-direction: column;
  }
  .loginpage .login-wrap .right .right-wrap .social-login .social-button {
    padding: 12px;
    font-size: 14px;
  }
  .loginpage .login-wrap .right .right-wrap .form-options {
    gap: 12px;
  }
  .loginpage .login-wrap .right .right-wrap .form-options .forgot-password {
    font-size: 14px;
  }
  .loginpage .login-wrap .right .right-wrap .otp-form {
    padding: 20px 0;
  }
  .loginpage .login-wrap .right .right-wrap .otp-form .otp-inputs {
    justify-content: center;
    gap: 8px;
  }
  .loginpage .login-wrap .right .right-wrap .otp-form .otp-inputs .otp-input {
    width: 44px;
    height: 56px;
    font-size: 20px;
  }
  .loginpage .login-wrap .right .right-wrap .otp-form .verify-btn {
    padding: 12px;
    font-size: 15px;
  }
  .loginpage .login-wrap .right .right-wrap .otp-form-options .back-button {
    padding: 10px;
    font-size: 14px;
  }
  .loginpage .login-wrap .right .right-wrap .otp-header,
  .loginpage .login-wrap .right .right-wrap .forgot-header {
    text-align: center;
  }
  .loginpage .login-wrap .right .right-wrap .otp-header h1,
  .loginpage .login-wrap .right .right-wrap .forgot-header h1 {
    font-size: 1.3rem;
  }
  .loginpage .login-wrap .right .right-wrap .otp-header .otp-subtitle,
  .loginpage .login-wrap .right .right-wrap .otp-header .forgot-subtitle,
  .loginpage .login-wrap .right .right-wrap .forgot-header .otp-subtitle,
  .loginpage .login-wrap .right .right-wrap .forgot-header .forgot-subtitle {
    font-size: 1rem;
  }
  .loginpage .login-wrap .right .right-wrap .email-display {
    font-size: 1rem;
    text-align: center;
  }
  .loginpage .login-wrap .right .right-wrap .resend-otp {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}/*# sourceMappingURL=loginpage.css.map */