* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        linear-gradient(
            135deg,
            #f2f6f4,
            #e6eeeb
        );

    color: #263b34;
}


/* HEADER */

.header {
    min-height: 76px;

    padding: 14px 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #ffffff;

    border-bottom:
        1px solid #dfe7e4;
}


.brand {
    display: flex;

    align-items: center;

    gap: 11px;

    color: #294f44;

    text-decoration: none;
}


/* SCOREBRIDGE LOGO */

.brand-logo {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


/* LOGO IMAGE */

.brand-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


.brand strong {
    display: block;

    font-size: 19px;
}


.brand small {
    display: block;

    color: #82908a;

    font-size: 10px;
}


nav {
    display: flex;

    gap: 24px;
}


nav a {
    color: #607069;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;
}


nav a:hover {
    color: #396c5d;
}


/* PAGE */

.page {
    width: 100%;

    padding:
        45px 20px
        70px;
}


/* PROGRESS */

.progress {
    max-width: 580px;

    margin:
        0 auto
        28px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.progress-step {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #8a9691;

    font-size: 12px;

    font-weight: bold;
}


.progress-step span {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #d8e2de;

    color: #75827d;

    border-radius: 50%;
}


.progress-step.active {
    color: #396c5d;
}


.progress-step.active span {
    background: #396c5d;

    color: white;
}


.progress-line {
    width: 65px;

    height: 2px;

    margin: 0 10px;

    background: #d0dcd7;
}


/* CARD */

.card {
    width: 100%;

    max-width: 620px;

    margin: auto;

    padding: 40px;

    background: white;

    border:
        1px solid #e0e7e4;

    border-radius: 22px;

    box-shadow:
        0 16px 45px
        rgba(38, 70, 59, 0.11);
}


.hidden {
    display: none;
}


/* HEADING */

.card-heading {
    margin-bottom: 27px;

    text-align: center;
}


.tag {
    display: inline-block;

    margin-bottom: 10px;

    padding: 5px 13px;

    background: #e4f1ec;

    color: #396c5d;

    border-radius: 20px;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1.3px;
}


.card-heading h1 {
    color: #273f37;

    font-size: 32px;

    margin-bottom: 7px;
}


.card-heading p {
    color: #74827c;

    font-size: 14px;
}


/* MEMBERSHIP */

.membership-box {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 18px;

    margin-bottom: 15px;

    background: #eef6f3;

    border:
        1px solid #d9e7e2;

    border-radius: 13px;
}


.membership-box > div:first-child {
    flex: 1;
}


.membership-box small {
    color: #798781;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 1px;
}


.membership-box h3 {
    margin-top: 2px;
}


.membership-box p {
    color: #72807a;

    font-size: 12px;
}


.membership-price {
    text-align: right;
}


.membership-price strong {
    display: block;

    color: #396c5d;

    font-size: 20px;
}


.membership-price a {
    color: #396c5d;

    font-size: 11px;

    font-weight: bold;
}


/* CURRENCY INFO */

.currency-info {
    display: flex;

    gap: 12px;

    padding: 14px;

    margin-bottom: 25px;

    background: #f8faf9;

    border:
        1px solid #e3e9e6;

    border-radius: 11px;
}


.currency-info > span {
    font-size: 22px;
}


.currency-info strong {
    font-size: 13px;
}


.currency-info p {
    color: #77847f;

    font-size: 11px;

    line-height: 1.5;
}


/* FORM */

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


.form-group {
    margin-bottom: 18px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    font-size: 13px;

    font-weight: 600;
}


.form-group input {
    width: 100%;

    height: 48px;

    padding: 0 14px;

    background: white;

    border:
        1px solid #ccd8d3;

    border-radius: 9px;

    outline: none;

    font-size: 15px;
}


.form-group input:focus {
    border-color: #396c5d;

    box-shadow:
        0 0 0 3px
        rgba(57, 108, 93, .1);
}


/* PASSWORD */

.password-box {
    position: relative;
}


.password-box input {
    padding-right: 70px;
}


.show-password {
    position: absolute;

    right: 12px;

    top: 50%;

    transform:
        translateY(-50%);

    background: transparent;

    border: none;

    color: #396c5d;

    font-weight: bold;

    cursor: pointer;
}


.password-note {
    display: block;

    margin-top: 5px;

    color: #89958f;

    font-size: 10px;
}


/* TERMS */

.terms {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin:
        3px 0
        20px;

    color: #69766f;

    font-size: 12px;
}


.terms input {
    margin-top: 2px;
}


/* BUTTON */

.main-button {
    width: 100%;

    padding: 15px;

    background: #396c5d;

    color: white;

    border: none;

    border-radius: 10px;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;

    transition: .2s;
}


.main-button:hover {
    background: #294f44;
}


.main-button:disabled {
    opacity: .55;

    cursor: wait;
}


.back-button {
    width: 100%;

    margin-top: 10px;

    padding: 12px;

    background: transparent;

    color: #5f7069;

    border:
        1px solid #d8e1dd;

    border-radius: 9px;

    cursor: pointer;
}


/* LOGIN */

.login-link {
    margin-top: 22px;

    color: #77847e;

    text-align: center;

    font-size: 12px;
}


.login-link a {
    color: #396c5d;

    font-weight: bold;
}


/* CUSTOMER */

.customer-box {
    padding: 17px;

    margin-bottom: 18px;

    background: #f7faf9;

    border-radius: 11px;
}


.customer-box small {
    display: block;

    color: #7b8983;

    font-size: 9px;

    font-weight: bold;

    letter-spacing: 1px;
}


.customer-box strong {
    display: block;

    margin-top: 3px;
}


.customer-box span {
    color: #75837d;

    font-size: 12px;
}


/* PAYMENT SUMMARY */

.payment-summary {
    padding: 20px;

    margin-bottom: 25px;

    border:
        1px solid #e0e8e4;

    border-radius: 13px;
}


.summary-row {
    display: flex;

    justify-content: space-between;

    padding: 7px 0;

    color: #65756e;

    font-size: 13px;
}


.summary-total {
    display: flex;

    justify-content: space-between;

    margin-top: 10px;

    padding-top: 14px;

    border-top:
        1px solid #dce5e1;

    color: #294f44;

    font-size: 20px;
}


/* PAYMENT METHODS */

.payment-methods {
    margin-bottom: 20px;
}


.payment-methods h3 {
    margin-bottom: 12px;

    font-size: 16px;
}


.method-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;
}


.method {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px;

    border:
        1px solid #dce5e1;

    border-radius: 10px;
}


.method-icon {
    min-width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e5f1ed;

    color: #396c5d;

    border-radius: 9px;

    font-size: 12px;

    font-weight: bold;
}


.method strong {
    display: block;

    font-size: 12px;
}


.method small {
    display: block;

    margin-top: 2px;

    color: #82908a;

    font-size: 9px;
}


/* LOCAL CURRENCY */

.local-currency {
    display: flex;

    gap: 13px;

    padding: 16px;

    margin-bottom: 19px;

    background: #edf6f2;

    border-radius: 11px;
}


.globe {
    font-size: 25px;
}


.local-currency strong {
    font-size: 13px;
}


.local-currency p {
    margin-top: 2px;

    color: #63766e;

    font-size: 11px;
}


.local-currency small {
    color: #87938e;

    font-size: 9px;
}


/* MESSAGE */

.message {
    min-height: 18px;

    margin-bottom: 10px;

    color: #be3d32;

    text-align: center;

    font-size: 12px;
}


/* SECURITY */

.secure-message {
    margin-top: 15px;

    color: #7c8984;

    text-align: center;

    font-size: 10px;
}


/* FOOTER */

footer {
    padding: 30px 20px;

    background: #203d35;

    color: white;

    text-align: center;
}


footer p {
    margin: 4px 0 10px;

    color: #b6c8c2;
}


footer small {
    color: #82988f;
}


/* MOBILE */

@media (max-width: 650px) {

    .header {
        flex-direction: column;

        gap: 14px;
    }


    nav {
        gap: 15px;
    }


    .card {
        padding: 28px 20px;
    }


    .form-row {
        grid-template-columns: 1fr;
    }


    .method-grid {
        grid-template-columns: 1fr;
    }


    .progress-step p {
        display: none;
    }


    .membership-box {
        flex-wrap: wrap;
    }

}