:root {
    --theme-color: #e22026;
    --secondary-color: #550401;
    --text-color: #545151;
    --title-color: #1e242a;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgba(84, 81, 81, 0.1);
    padding: 1rem;
  }
  
  /* Login Container Styles */
  .login-container {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
  }
  
  .login-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .login-header h1 {
    color: var(--title-color);
    margin-bottom: 0.5rem;
    font-size: 2rem;
  }
  
  .login-header p {
    color: var(--text-color);
    font-size: 1rem;
  }
  
  .input-group {
    margin-bottom: 1.5rem;
  }
  
  .input-group label {
    display: block;
    color: var(--title-color);
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
  }
  
  .input-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .input-group input:focus {
    outline: none;
    border-color: var(--theme-color);
  }
  
  button {
    width: 100%;
    padding: 1rem;
    background-color: var(--theme-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: var(--secondary-color);
  }
  
  /* Branch Info Styles */
  .branch-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .branch-info {
    background: var(--theme-color);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .branch-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .main-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
  }
  
  .branch-details p {
    font-size: 1.1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .login-container {
      padding: 2rem;
      max-width: 90%;
    }
  
    .login-header h1 {
      font-size: 1.75rem;
    }
  
    .login-header p {
      font-size: 0.9rem;
    }
  
    .branch-info {
      padding: 2rem;
    }
    
    .branch-info h1 {
      font-size: 2rem;
    }
    
    .main-message {
      font-size: 1.1rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .login-container {
      padding: 1.5rem;
      max-width: 100%;
    }
  
    .login-header h1 {
      font-size: 1.5rem;
    }
  
    .input-group input {
      padding: 0.7rem;
      font-size: 0.9rem;
    }
  
    button {
      padding: 0.9rem;
      font-size: 0.9rem;
    }
  
    .branch-info {
      padding: 1.5rem;
    }
    
    .branch-info h1 {
      font-size: 1.75rem;
    }
    
    .branch-details p {
      font-size: 1rem;
      flex-direction: column;
      gap: 0.5rem;
    }
  }
  
  @media screen and (max-width: 320px) {
    .login-container {
      padding: 1rem;
    }
  
    .login-header h1 {
      font-size: 1.25rem;
    }
  
    .login-header p {
      font-size: 0.8rem;
    }
  
    .input-group label {
      font-size: 0.8rem;
    }
  
    .branch-info h1 {
      font-size: 1.5rem;
    }
    
    .main-message {
      font-size: 1rem;
    }
    
    .branch-details p {
      font-size: 0.9rem;
    }
  }
  
  /* Return Home Icon */
  .return-home {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    z-index: 10;
  }

  .return-home:hover {
    color: var(--theme-color);
  }

  @media (max-width: 768px) {
    .return-home {
        top: 1.5rem;
        left: 1.5rem;
        font-size: 1.3rem;
    }
  }

  @media (max-width: 480px) {
    .return-home {
        top: 1rem;
        left: 1rem;
        font-size: 1.2rem;
    }
  }
  .forgot-password,
  .register-link {
      text-align: center;
      margin-top: 1rem;
      font-size: 0.95rem;
  }
  
  .forgot-password a {
      color: var(--text-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
  }
  
  .register-link a {
      color: var(--theme-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
  }
  
  .forgot-password a:hover {
      color: var(--title-color); /* Darker shade for contrast */
      text-decoration: underline;
  }
  
  .register-link a:hover {
      color: var(--secondary-color); /* Dark red for hover effect */
      text-decoration: underline;
  }
  