/* ADKO Agent Portal */

.adko-agent-auth-card,
.adko-pricing-card {
    width: min(100%, 720px);
    margin: 0 auto;
    padding: 34px;
    background: #fff;
    border: 1px solid #e4eaf0;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(14, 57, 98, 0.10);
    box-sizing: border-box;
}

.adko-agent-auth-heading {
    margin-bottom: 26px;
    text-align: center;
}

.adko-agent-auth-heading h2,
.adko-pricing-card h2 {
    margin: 0 0 10px;
    color: #123f70;
    font-size: 34px;
    line-height: 1.2;
}

.adko-agent-auth-heading p,
.adko-pricing-card p {
    color: #6f7c89;
}

.adko-agent-form {
    display: grid;
    gap: 18px;
}

.adko-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.adko-field {
    display: grid;
    gap: 8px;
}

.adko-field label {
    color: #183650;
    font-weight: 600;
}

.adko-field input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    color: #183650;
    background: #f6f8fa;
    border: 1px solid #dce4eb;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
}

.adko-field input:focus {
    background: #fff;
    border-color: #174f85;
    box-shadow: 0 0 0 4px rgba(23, 79, 133, 0.10);
}

.adko-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    color: #fff !important;
    background: #124c83;
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    transition: .2s ease;
}

.adko-primary-button:hover {
    background: #0c3863;
    transform: translateY(-1px);
}

.adko-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.adko-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.adko-form-footer {
    margin: 0;
    text-align: center;
}

.adko-notice {
    width: min(100%, 720px);
    margin: 0 auto 20px;
    padding: 18px;
    border-radius: 12px;
    box-sizing: border-box;
}

.adko-notice p {
    margin-top: 0;
}

.adko-notice-error {
    color: #7a1d1d;
    background: #fff1f1;
    border: 1px solid #efc6c6;
}

.adko-notice-info {
    color: #174f85;
    background: #eef6fd;
    border: 1px solid #cce2f5;
}

.adko-notice-success {
    color: #17643a;
    background: #eefaf3;
    border: 1px solid #c8ead6;
}

.adko-pricing-card {
    max-width: 620px;
    text-align: center;
}

.adko-pricing-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 13px;
    color: #124c83;
    background: #edf5fc;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
}

.adko-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 24px 0 4px;
    color: #123f70;
}

.adko-price-currency {
    align-self: flex-start;
    margin-top: 12px;
    font-size: 24px;
    font-weight: 700;
}

.adko-price-amount {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
}

.adko-price-cycle {
    margin-bottom: 9px;
    color: #6f7c89;
    font-size: 17px;
}

.adko-signup-fee,
.adko-first-payment {
    margin: 5px 0;
}

.adko-feature-list {
    display: grid;
    gap: 12px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.adko-feature-list li {
    position: relative;
    padding-left: 28px;
    color: #344b60;
}

.adko-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #124c83;
    font-weight: 800;
}

.adko-checkout-button {
    width: 100%;
}

.adko-agent-logout {
    color: #b42318;
    font-weight: 700;
}

@media (max-width: 767px) {
    .adko-agent-auth-card,
    .adko-pricing-card {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .adko-field-grid {
        grid-template-columns: 1fr;
    }

    .adko-agent-auth-heading h2,
    .adko-pricing-card h2 {
        font-size: 28px;
    }

    .adko-login-options {
        align-items: flex-start;
        flex-direction: column;
    }

    .adko-price-amount {
        font-size: 60px;
    }
}
