/* COMPACTO Secure Login Master - Login Page Styles */

body {
    background: #eef1f5;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.cslm-login-box {
    width: 420px;
    margin: 80px auto;
    padding: 45px 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    text-align: center;
}

/* Website address above title */
.cslm-site-url {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 14px;
    word-break: break-all;
}

.cslm-login-box h2 {
    margin-bottom: 30px;
    color: #222222;
    font-size: 30px;
    font-weight: bold;
}

/* Labels aligned with centered textboxes */
.cslm-login-box label {
    display: block;
    width: 85%;              /* matches textbox width */
    margin: 0 auto;
    margin-top: 22px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #444444;
    text-align: center;        
}

/* Larger input boxes */
.cslm-login-box input[type="text"],
.cslm-login-box input[type="password"] {
    width: 85%;
    padding: 18px;           /* slightly larger */
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 17px;
    background: #fafafa;
    margin-bottom: 16px;     /* more spacing */
}

/* Centered Remember Me with more spacing */
.cslm-remember-wrapper {
    width: 85%;
    margin: 18px auto 20px auto; 
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cslm-remember-wrapper label {
    margin: 0;
    padding: 0;
    text-align: center;
    font-weight: normal;
}

.cslm-login-box input[type="submit"] {
    width: 90%;
    padding: 24px; 
    background: #0073aa;
    border: none; border-radius: 12px;
    color: #ffffff; font-size: 22px;
    larger text */ font-weight: bold;
    cursor: pointer;
    margin-top: 35px;
    transition: background 0.25s ease, transform 0.1s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.cslm-login-box input[type="submit"]:hover {
    background: #005f8d;
}

.cslm-error {
    background: #ffdddd;
    border-left: 4px solid #cc0000;
    padding: 12px;
    margin-bottom: 20px;
    color: #990000;
    border-radius: 5px;
    font-size: 14px;
    text-align: left;
}
