@charset "UTF-8";
/* extracted from pages/home.php <style> — CSS refactor Phase C */
.login-card {
    max-width: 360px;
    margin: 10px auto 20px auto;
    background: #fff;
    border: 2px solid #996666;
    border-radius: 8px;
    padding: 28px 32px 24px 32px;
    text-align: left;
}
.login-card label {
    display: block;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #555;
    margin-bottom: 4px;
    margin-top: 16px;
}
.login-card label:first-of-type { margin-top: 0; }
.login-card input[type="text"],
.login-card input[type="password"] {
    display: block;
    width: 100%;
    padding: 9px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    color: #333;
}
.login-card input[type="text"]:focus,
.login-card input[type="password"]:focus {
    outline: none;
    border-color: #996666;
    box-shadow: 0 0 0 2px rgba(153,102,102,0.2);
}
.login-card .error-msg {
    color: #cc0000;
    font-size: 15px;
    margin-bottom: 12px;
    text-align: center;
    background: #fff5f5;
    border: 1px solid #ffcccc;
    border-radius: 4px;
    padding: 8px 12px;
}
.login-card .form-actions {
    margin-top: 22px;
    text-align: center;
}
.login-card .form-actions .button6 {
    width: 100%;
    padding: 11px;
    font-size: 15px;
}
.create-account-wrap {
    margin: 8px 0 16px 0;
    text-align: center;
}
.create-account-wrap .button6 {
    display: inline-block;
    text-decoration: none;
}
.new-user-hint {
    text-align: center;
    margin: 12px 0 4px 0;
    font-size: 17px;
    color: #777;
}
.new-user-hint a {
    color: #990000;
    font-weight: bold;
    text-decoration: none;
}
.new-user-hint a:hover { text-decoration: underline; }
