/* =========================================
   Base Reset & Typography
   ========================================= */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Open Sans", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    /* Retained your existing background setup */
    background: url('dist/images/main-new-blur.jpg') no-repeat center center fixed;
    background-size: cover;
  }
  
  /* =========================================
     Layout & Centering (Flexbox)
     ========================================= */
  .login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px; /* Prevents card from touching screen edges on small devices */
  }
  
  /* =========================================
     Modern Login Card
     ========================================= */
  .login-card {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* Subtle glass effect */
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .login-card h1 {
    font-size: 24px;
    font-weight: 600;
    color: #444;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* =========================================
     Form Inputs
     ========================================= */
  .input-group {
    margin-bottom: 20px;
  }
  
  .input-group input[type="text"],
  .input-group input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: #333;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
  }
  
  .input-group input[type="text"]:focus,
  .input-group input[type="password"]:focus {
    background: #fff;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  }
  
  .input-group input::placeholder {
    color: #aaa;
  }
  
  /* =========================================
     Buttons & Links
     ========================================= */
  .form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
  }
  
  .btn-primary {
    background-color: #3498db; /* Adjust to match Belhasa branding if needed */
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
  }
  
  .btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
  }
  
  .btn-primary:active {
    transform: translateY(1px);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #666;
    border: 1px solid #ccc;
  }
  
  .btn-secondary:hover {
    background-color: #f1f1f1;
    color: #333;
  }