body {
  margin: 0;
  min-height: 100vh;
  background-color: #0a0a0a;
  background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.login_area {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Background Shapes */
.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 20s infinite alternate;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: hsl(var(--primary));
  top: -100px;
  right: -100px;
  animation-duration: 25s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #0088CC ;
  bottom: -50px;
  left: -50px;
  animation-duration: 30s;
  animation-delay: -5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: #872fa1;
  top: 50%;
  left: 30%;
  animation-duration: 20s;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(50px, 50px) rotate(180deg); }
  100% { transform: translate(-20px, 80px) rotate(360deg); }
}

/* Login Card Glassmorphism */
.login {
  width: 420px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login--logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.login--logo img {
  width: 100px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.login__header {
  margin-bottom: 30px;
  text-align: center;
}

.login__header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.login__header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.login__body .field {
  margin-bottom: 15px;
}

.login__body label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.login__body .field input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.login__body .field input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.login__body .field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.login__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  width: 100%;
}

.form--check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check-label {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  margin: 0 !important;
  cursor: pointer;
  line-height: 1;
}

.form-check-input {
  margin: 0 !important;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.field_foget a {
  color: hsl(var(--primary));
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.field_foget a:hover {
  text-decoration: underline;
}

.sign-in {
  width: 100%;
  padding: 10px;
  background: hsl(var(--primary));
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px -4px rgba(var(--primary-rgb), 0.3);
}

.sign-in:hover {
  background: hsl(var(--primary) / 0.9);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(var(--primary-rgb), 0.4);
}

.sign-in:active {
  transform: translateY(0);
}

/* Captcha styling */
.captcha-input {
  margin-bottom: 20px;
}

/* Custom Checkbox */
.form-check-input {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.form-check-input:checked {
  background-color: hsl(var(--primary)) !important;
  border-color: hsl(var(--primary)) !important;
}

/* Code Input Styling (Verification) */
.boxes-two {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.code-input {
  width: 45px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.code-input:focus {
  outline: none;
  border-color: hsl(var(--primary)) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.forget-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
}

.forget-text:hover {
  color: hsl(var(--primary));
  text-decoration: underline;
}

@media (max-width: 480px) {
  .login {
    width: 90%;
    padding: 30px 20px;
  }
  
  .login__header h2 {
    font-size: 28px;
  }
}