/* Full-page wrapper */
.login-wrapper {
    max-width: 400px;
    margin: 50px auto;        /* Center vertically & horizontally */
    padding: 40px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

/* Company Logo */
.login-logo img {
    max-width: 200px;
    margin-bottom: 30px;
}

/* Labels */
.custom-login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: left;
}

/* Inputs */
.custom-login-form input[type="text"],
.custom-login-form input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Submit Button */
.custom-login-form .button {
    width: 100%;
    padding: 10px;
    background: #004488;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease-in-out;
}
.custom-login-form .button:hover {
    background: #003366;
}

/* Login Error Messages */
.login-error {
    color: #cc0000;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
}

/* Footer */
.login-footer {
    margin-top: 30px;
    font-size: 13px;
    color: #777;
}

/* Responsive Adjustments */
@media (max-width: 500px) {
    .login-wrapper {
        margin: 20px;
        padding: 30px;
    }
}
