﻿:root {
    --light-grey: #c4c4c4;
    --title-font-size: 16px;
    --subtitle-font-size: 15px;
    --body-font-size: 14px;
}

body {
    font-size: var(--body-font-size);

    h1,
    h2,
    h3 {
        font-size: var(--title-font-size);
        text-transform: none;
        line-height: 20px;
    }

    .btn {
        font-size: var(--body-font-size);
    }

    /*&.checkout .btn {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
    }

    &.checkout .btn:hover,
    &.checkout .btn:focus {
        background: var(--primary-hover);
        border-color: var(--primary-hover);
        color: var(--white);
    }*/

    @media (max-width: 767px){
        main {
            padding-bottom: 100px;
        }
    }
}


.image-container {
    display: flex;
    justify-content: space-between;
    max-width: 540px;
    margin: auto;
}

.image-container img {
    max-height: 30px;
    height: auto;
}

.form-group {
    line-height: 18px;
    margin-bottom: 16px;
}


.image-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 15%;
}

@media (max-width: 767px) {
    .image-container {
        max-width: none;
    }

    .image-item {
        width: 25%;
    }
}

.image-item p {
    line-height: 18px;
    text-align: center;
}

.dob-container {
    display: flex;
    gap: 11.5px;
    width: 100%;
}

.dob-container > select {
    flex: 1;
}

.form-group select {
    border-color: var(--black);
    color: var(--black);
}

.form-group label {
    font-size: var(--subtitle-font-size);
}

.form-group > label.subscribe {
    display: flex;
    align-items: start;
    font-size: 14px;
    line-height: 18px;
}

.subscribe > input {
    width: auto;
    margin-right: 15px;
    margin-top: 3px;
    margin-left: 0;
    height: 13px;
    width: 13px;
}

.link-btn {
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
    padding: 0;
    margin: 0;
    color: var(--black);
    -webkit-appearance: none;
}    

input:not([type="checkbox"]) {
    height: 44px;
    border: 1px solid var(--black);
    max-width: none;
}

input:not([type="checkbox"]):focus,
.form-group select:focus {
    outline: none;
    box-shadow: inset 0px 0px 0px 1px var(--black);
}

.btn {
    padding: 11px 32px;
    bottom: unset;
    box-sizing: border-box;
}

.email-login,
.login-register,
.login-forgot,
.account-reactivation {
    .frame {
        background: none;
        padding: 0;

        @media (min-width: 768px) {
            max-width: 540px;
        }

        p {
            margin: 0 0 16px;
            font-size: var(--body-font-size);
            line-height: 18px;
        }

        form {
            border: 1px solid var(--light-grey);
            padding: 20px;
            position: relative;

            .btn {
                position: relative;
                max-width: none;
                width: 100%;
            }

            #pstrength-container {
                max-width: none;
                display: flex;
                text-align: right;
                flex-direction: column-reverse;
                margin-bottom: 16px;

                > div {
                    padding: 0;

                    span {
                        color: #5E5E5E !important;
                    }
                }

                .pstrength-bar {
                    margin-top: 16px;
                }
            }
        }

        .continue-as-guest {
            text-align: center;
            margin-top: 20px;

            p {
                margin: 0 0 20px;
            }

            form {
                border: none;
                padding: 0;
            }
        }

        .terms-conditions {
            margin: 20px 0;
            font-size: 14px !important;
            line-height: 18px;
        }

    }
}

.account-reactivation .frame {
    @media (min-width: 768px) {
        max-width: 800px;
    }

    h2.faq {
        font-weight: normal;
    }

    h4 {
        margin-bottom: 10px;
    }

    li {
        font-size: 14px !important;
        line-height: 18px;
    }
}