/* Form styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.form-staff-login {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.staff-login {
    color: #1a73e8;
    text-decoration: none;
}


.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.UPTM-staff-route {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.UPTM-staff {
    color: #1a73e8;
    text-decoration: none;
}

.forgot-password {
    color: #1a73e8;
    text-decoration: none;
}

.button-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.login-btn, .back-btn {
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    background: #1a73e8;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.1);
}

.error-message {
    background-color: #fee2e2;
    color: #dc2626;
    padding: 0.75rem;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
}

.form-staff-login {
    margin-top: 1.5rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.staff-question {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.staff-login-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.staff-login-link:hover {
    color: #1557b0;
    text-decoration: underline;
}