  :root {
      --primary-color:rgb(15, 16, 17);
      --secondary-color: #e67e22;
      --accent-color: #3498db;
      --light-gray: #f5f7fa;
      --dark-gray: #7f8c8d;
    }
    
    * {
          font-family: 'Playfair Display', serif;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Playfair Display', serif;
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                        url('../img/a.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    
    .login-container {
      background-color: rgba(255, 255, 255, 0.95);
      padding: 2.5rem;
      border-radius: 12px;
      width: 100%;
      max-width: 420px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .login-container:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }
    
    .logo {
      width: 80px;
      height: auto;
      margin-bottom: 1.5rem;
    }
    
    .login-container h2 {
      margin-bottom: 1.5rem;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 1.5rem;
    }
    
    .login-container p.subtitle {
      color: var(--dark-gray);
      margin-bottom: 2rem;
      font-size: 0.9rem;
    }
    
    .form-group {
      margin-bottom: 1.25rem;
      text-align: left;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--primary-color);
      font-weight: 500;
      font-size: 0.9rem;
    }
    
    .form-control {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      font-size: 0.95rem;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--accent-color);
      box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    }
    
    .btn {
      width: 100%;
      padding: 0.85rem;
      border: none;
      border-radius: 6px;
      font-weight: 500;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .btn-primary {
      background-color: var(--secondary-color);
      color: white;
    }
    
    .btn-primary:hover {
      background-color: #d35400;
      transform: translateY(-2px);
    }
    
    .btn-secondary {
      background-color: var(--light-gray);
      color: var(--primary-color);
      margin-top: 0.75rem;
    }
    
    .btn-secondary:hover {
      background-color: #e0e0e0;
    }
    
    #login-message {
      margin-top: 1.25rem;
      color: #e74c3c;
      font-weight: 500;
      font-size: 0.9rem;
      min-height: 1.25rem;
    }
    
    .footer-links {
      margin-top: 1.5rem;
      font-size: 0.85rem;
    }
    
    .footer-links a {
      color: var(--dark-gray);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--secondary-color);
    }
    
    .divider {
      display: flex;
      align-items: center;
      margin: 1.5rem 0;
      color: var(--dark-gray);
      font-size: 0.8rem;
    }
    
    .divider::before,
    .divider::after {
      content: "";
      flex: 1;
      border-bottom: 1px solid #e0e0e0;
    }
    
    .divider::before {
      margin-right: 1rem;
    }
    
    .divider::after {
      margin-left: 1rem;
    }
    i{
     color: #e67e22;
     font-size: 1rem;
    }
    
    @media (max-width: 480px) {
      .login-container {
        padding: 1.75rem;
      }
      
      .login-container h2 {
        font-size: 1.3rem;
      }
    }