:root {
  --primary-color: #6E59A5;
  --primary-dark: #151938;
  --primary-light: #9b87f5;
  --white: #ffffff;
  --dark: #0A0B1A;
  --gray-dark: #222;
  --gray-light: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--dark);
  color: var(--white);
  min-height: 100vh;
}

.login-card {
  background-color: transparent;
  width: 100%;
  position: relative;
  z-index: 10;
  border: none;
  box-shadow: none;
}

.login-header {
  margin-bottom: 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.logo {
  height: 36px;
  max-width: 100%;
}

.login-form-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.login-form-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(20, 20, 40, 0.5);
  border: 1px solid rgba(110, 89, 165, 0.3);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  background-color: rgba(20, 20, 40, 0.6);
  box-shadow: 0 0 0 2px rgba(110, 89, 165, 0.15);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--white);
  color: var(--dark);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  width: auto;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn:disabled {
  background-color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  transform: none;
}

.form-footer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.forgot-password {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--white);
  text-decoration: underline;
}

.language-selector {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
}

.alert {
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.alert-danger {
  background-color: rgba(220, 53, 69, 0.2);
  color: #f8d7da;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

/* ReCaptcha styling */
.g-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.demo-link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
}

.demo-link:hover {
  text-decoration: underline;
}

.demo-text {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .login-container {
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
  }
  
  .login-form-title {
    font-size: 1.6rem;
  }
} 