/* style_login.css */

/* Vertical centering for the login page content */
.login-page-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px);
  }
  
  /* Card container for the login form */
  .login-page-card {
    max-width: 400px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    color: #000; /* Ensure text is black */
  }
  
  /* Title styling for the login page */
  .login-page-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
  }
  
  /* Description styling for the login page text */
  .login-page-description {
    text-align: center;
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
  }
  
  /* Login input fields styling */
  .login-page-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: #000;
  }
  
  /* Input focus state */
  .login-page-input:focus {
    outline: none;
    border-color: #173B49;
    box-shadow: 0 0 5px rgba(23, 59, 73, 0.5);
  }
  
  /* Login button styling */
  .login-page-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #173B49;
    color: #fff; /* Button text remains white for contrast */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  /* Login button hover state */
  .login-page-btn:hover {
    background-color: #0F2B37;
    transform: scale(1.02);
  }
  
  /* Recovery link styling */
  .login-page-recovery-link {
    display: block;
    text-align: center;
    margin-top: 20px;  /* Extra margin for better spacing */
    color: #555;       /* Grey shade for the link */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .login-page-recovery-link:hover {
    color: #333;
  }
  
  /* Responsive adjustments for mobile devices */
  @media (max-width: 600px) {
    .login-page-card {
      margin: 20px;
      padding: 15px;
    }
    
    .login-page-title {
      font-size: 24px;
    }
    
    .login-page-input,
    .login-page-btn {
      font-size: 14px;
      padding: 10px;
    }
  }
  