﻿/* Login Page Custom Styles */

/* Initially hide the "Please wait..." button */
.btn-temp {
    display: none;
}

/* You can add more custom styles specific to the login page here */
/* For example: */

.login-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.form-control.input-text {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 8px 12px;
}

    .form-control.input-text:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

.field-validation-error {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 5px;
}

.control-label {
    font-weight: 500;
    margin-bottom: 5px;
}
