/* Center the Login Screen */
#password-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f8f8f8; /* Light background */
  }
  
  /* Styled Login Card */
  .password-card {
    background-color: #fff; /* White card */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    text-align: center;
  }
  
  .password-card h2 {
    color: #5d4037; /* Warm color for text */
    margin-bottom: 20px;
    font-size: 28px;
  }
  
  .password-card p {
    color: #5d4037;
    margin-bottom: 20px;
  }
  
  #password-input {
    padding: 12px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%; /* Full width of card */
    transition: box-shadow 0.3s ease-in-out;
  }
  
  #password-input:focus {
    box-shadow: 0 0 8px rgba(93, 64, 55, 0.5); /* Shadow on focus */
    outline: none;
  }
  
  button {
    padding: 12px 24px;
    font-size: 18px;
    color: #fff;
    background-color: #07306D; /* Warm color for button */
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  button:hover {
    background-color: #5d4037;
  }
  
  button:active {
    transform: scale(0.98); /* Slight shrink on click */
  }
  
  .error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
  }
  