/* Forgot Password Page Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.forgot-password-page {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.forgot-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.form-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.form-subtitle {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.alert {
  margin-bottom: 25px;
  padding: 18px 24px;
  border-radius: 16px;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.alert-info {
  background: rgba(13, 202, 240, 0.15);
  color: #0c5460;
  border-color: rgba(13, 202, 240, 0.3);
}

.form-group {
  margin-bottom: 30px;
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 20px 24px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.9);
  color: #2d3748;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #667eea;
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.submit-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.back-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.back-link:hover {
  color: #764ba2;
}

@media (max-width: 768px) {
  .forgot-container {
    padding: 40px 30px;
    margin: 20px;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
} 