/* Login Form Section */
.login-form-section {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #135ac5;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 1rem;
    text-align: left;
}

input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.btn-highlight {
    background: #ffc107;
    border: none;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

.btn-highlight:hover {
    background: #e0a800;
}

/* Forgot Password */
.forgot-password {
    margin-top: 10px;
    font-size: 0.9rem;
}

.forgot-password a {
    color: #135ac5;
    text-decoration: none;
    font-weight: bold;
}

.forgot-password a:hover {
    text-decoration: underline;
}
