/* Global Styles */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Common Sections with Gradient Background */
  .login-section,
  .register-section,
  .forgot-section,
  .confirm-section,
  .verify-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(20,87,48,0.8), rgba(0,0,0,0.8)),
                url('../../../assets/images/bg.jpg') center/cover no-repeat;
    padding: 2rem;
  }
  
  /* Glassy Cards for all forms */
  .login-card,
  .register-card,
  .forgot-card,
  .confirm-card,
  .verify-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 2rem;
    color: #fff;
    transition: transform 0.3s ease;
  }
  
  .login-card:hover,
  .register-card:hover,
  .forgot-card:hover,
  .confirm-card:hover,
  .verify-card:hover {
    transform: translateY(-5px);
  }
  
  .login-card h2,
  .register-card h2,
  .forgot-card h2 {
    color: #fff;
    font-weight: bold;
  }
  
  /* Buttons */
  .btn-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
    font-weight: bold;
    transition: transform 0.2s ease;
  }
  
  .btn-success:hover {
    background: linear-gradient(135deg, #27ae60, #1e8449);
    transform: scale(1.02);
  }
  
  /* Input Fields */
  .form-control {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
  }
  
  .form-control::placeholder {
    color: #ddd;
  }
  
  .form-control:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: #2ecc71;
    box-shadow: none;
    color: #fff;
  }
  
  /* Error Messages */
  .invalid-feedback {
    color: #ffb3b3;
    font-size: 0.9rem;
  }
  
  /* Links */
  a {
    color: #2ecc71;
    font-weight: 500;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Left Content Styling */
  .statement {
    color: #fff;
  }
  
  .statement h1 {
    font-weight: bold;
    font-size: 2.5rem;
  }
  
  .statement p {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  .logo-auth img{
    width: 200px;
    text-align: center;
  }
  .logo-auth{
    text-align: center;
    margin-bottom: 2rem;
  }
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .statement {
      text-align: center;
      margin-bottom: 2rem;
    }
  }
  