body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
    color: #1f2937;
}

.auth-page {
    min-height: 100vh;
    display: table;
    width: 100%;
}

.auth-wrap {
    display: table-cell;
    vertical-align: middle;
    padding: 24px;
}

.auth-shell {
    max-width: 1040px;
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.auth-left,
.auth-right {
    box-sizing: border-box;
    min-height: 620px;
}

.auth-left {
    float: left;
    width: 52%;
    padding: 54px 48px;
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
}

.auth-right {
    float: right;
    width: 48%;
    padding: 54px 44px;
    background: #ffffff;
}

.auth-brand {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 40px;
}

.auth-logo {
    height: 36px;
}

.auth-button-link {
    display: block;
    text-decoration: none;
}

.auth-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: 14px;
}

.auth-heading {
    margin: 0 0 16px;
    font-size: 2.35rem;
    line-height: 1.05;
}

.auth-copy {
    margin: 0 0 22px;
    color: #d1d5db;
    line-height: 1.65;
    font-size: 1rem;
}

.auth-points {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.auth-points li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    color: #e5e7eb;
    line-height: 1.5;
}

.auth-points li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #93c5fd;
    font-weight: bold;
}

.auth-card-title {
    margin: 0 0 8px;
    font-size: 1.8rem;
    color: #111827;
}

.auth-card-copy {
    margin: 0 0 26px;
    color: #6b7280;
    line-height: 1.6;
}

.form-row {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.94rem;
    font-weight: 700;
    color: #374151;
}

.form-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 6px 0 18px;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.55;
}

.terms-check input[type="checkbox"] {
    margin: 3px 0 0;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    accent-color: #f59e0b;
}

.terms-check span {
    display: block;
}

.terms-check a {
    color: #111827;
    font-weight: 700;
    text-decoration: none;
}

.terms-check a:hover {
    text-decoration: underline;
}

.cf-turnstile {
    margin-bottom: 16px;
}

.form-actions {
    margin-top: 24px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 700;
    text-align: center;
}

.btn-primary {
    width: 100%;
    border: none;
    background: #f59e0b;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-primary:hover {
    background: #d97706;
}

.auth-links {
    margin-top: 18px;
    color: #6b7280;
    line-height: 1.6;
}

.auth-links a {
    color: #111827;
    font-weight: 700;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.notice,
.error-box {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.notice {
    background: #eaf8ee;
    color: #1f6b39;
    border: 1px solid #ccebd6;
}

.error-box {
    background: #fdecec;
    color: #8b1e1e;
    border: 1px solid #f6caca;
}

.auth-footer-link {
    margin-top: 28px;
    font-size: 0.95rem;
    color: #d1d5db;
}

.auth-footer-link a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.auth-footer-link a:hover {
    text-decoration: underline;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 900px) {
    .auth-left,
    .auth-right {
        float: none;
        width: 100%;
        min-height: 0;
    }

    .auth-left {
        padding: 36px 28px;
    }

    .auth-right {
        padding: 36px 28px 34px;
    }

    .auth-heading {
        font-size: 2rem;
    }
}

@media (max-width: 520px) {
    .auth-wrap {
        padding: 14px;
    }

    .auth-left,
    .auth-right {
        padding-left: 20px;
        padding-right: 20px;
    }

    .auth-heading {
        font-size: 1.75rem;
    }

    .auth-card-title {
        font-size: 1.5rem;
    }
}
