/* ============================================================
   Client Login / Register — matches Custom Login Page Branding palette
   FILE NAME: client-login-register.css
   UPLOAD TO: wp-content/themes/twentytwentyfive/ (theme root, next to the page-*.php files)
   ============================================================ */

.llclogin-wrap {
    min-height: 80vh;
    background: #10222C;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.llclogin-card {
    background: #1B3A4B;
    border-top: 3px solid #2E8B7A;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 36px 32px;
    max-width: 420px;
    width: 100%;
}

.llcreg-card {
    max-width: 460px;
}

.llclogin-logo {
    display: block;
    max-width: 180px;
    width: 100%;
    height: auto;
    margin: 0 auto 18px;
}

.llclogin-title {
    font-family: 'Brush Script MT', cursive;
    color: #FFFFFF;
    font-size: 32px;
    text-align: center;
    margin: 0 0 8px;
    line-height: 1.2;
}

.llclogin-sub {
    color: #C9D9DE;
    font-size: 14px;
    text-align: center;
    margin: 0 0 24px;
    line-height: 1.5;
}

.llclogin-error {
    background: rgba(179,45,45,0.15);
    border: 1px solid #B32D2D;
    color: #ff9c9c;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 18px;
}

.llclogin-form label {
    display: block;
    color: #C9D9DE;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 14px 0 6px;
}

.llclogin-form input[type="text"],
.llclogin-form input[type="email"],
.llclogin-form input[type="password"],
.llclogin-form select {
    width: 100%;
    padding: 10px 12px;
    background: #142A38;
    border: 1px solid #2E8B7A;
    color: #C9D9DE;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
}

.llclogin-form input:focus,
.llclogin-form select:focus {
    outline: none;
    border-color: #4FB3A0;
    box-shadow: 0 0 0 1px #4FB3A0;
}

.llcreg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.llclogin-form button[type="submit"] {
    width: 100%;
    margin-top: 22px;
    padding: 12px 0;
    background: #4FB3A0;
    border: 1px solid #2E8B7A;
    color: #10222C;
    font-weight: 700;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.llclogin-form button[type="submit"]:hover {
    background: #2E8B7A;
    color: #FFFFFF;
}

.llclogin-links {
    margin-top: 18px;
    text-align: center;
}

.llclogin-links a {
    color: #8FA89C;
    font-size: 13px;
    text-decoration: underline;
}

.llclogin-links a:hover {
    color: #4FB3A0;
}

.llclogin-signup-line {
    color: #C9D9DE;
    font-size: 13px;
    margin-top: 14px;
}

@media (max-width: 480px) {
    .llcreg-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .llclogin-card {
        padding: 28px 22px;
    }
}