/* Centered main box with rounded corners and shadow */
.login-box {
    background-color: #ffffff; /* White background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    max-width: 450px;
    margin: 50px auto;
    text-align: center;
}

/* Logo styling */
.logo-placeholder img {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Form elements styling */
/* Form labels: use same width as inputs, left-align text */
form label {
    display: block;
    width: 90%;
    margin: 15px auto 5px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
}

/* Input fields: centered with 90% width */
form input[type="email"],
form input[type="password"],
form input[type="text"] {
    display: block;
    width: 90%;
    height: 20px;  /* Fixed height to keep size consistent */
    padding: 10px;
    margin: 0 auto 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Container for the show/hide password button */
.show-password-container {
    width: 90%;
    margin: 0 auto 10px;
    text-align: center;
  }
  
  /* Toggle button styling */
  .toggle-password-btn {
    background-color: #28a745;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    padding: 10px;
    border-radius: 25px;
  }
  

/* Button styling */
button {
    background-color: #007bff; /* Unique blue for login */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Login-specific heading and description */
.login-box h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.login-box p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

a {
    font-size: 16px;
    text-decoration: none;
    color: #007bff;
}

a:hover {
    color: #0056b3;
}

footer {
    background-color: #ffffff;
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #666;
}
