﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

div, input, select, ul, form {
    transition: none;
}

#pageWrapper input, #pageWrapper select {
    margin-bottom: 0px;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: inherit;
    justify-content: inherit;
    align-items: inherit;
    margin: auto;
    padding: 0 20px;
    font-family: Roboto;
}

#pageWrapper {
    padding: 35px 0px;
    background: linear-gradient(#00adf0,#00adf0);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 130px 1px;
}

.grid {
    display: grid;
    grid-template-areas: "top_left form_wrapper form_wrapper" "bottom-left form_wrapper form_wrapper";
    gap: 20px 35px;
}

.top_left {
    grid-area: top_left;
    padding: 37px 44px;
    background-color: #e5f7fd;
}

    .top_left .loginRegisterPara {
        color: #4d4d4d;
        font-size: 20px;
        line-height: 30px;
    }

    .top_left #promotionCodeDiv {
        margin-top: 38px;
    }

#PromotionCodeLabel {
    color: #00adf0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}




.bottom-left {
    grid-area: bottom-left;
    background-color: #f0f0f0;
    padding: 20px 40px;
}

    .bottom-left .input-holder {
        display: flex;
        margin-top: 30px;
    }

    .bottom-left input[type="checkbox"] {
        width: 19px;
        height: 19px;
        margin-inline-end: 20px;
    }

    .bottom-left, .bottom-left a {
        color: #4d4d4d;
    }

        .bottom-left a {
            cursor: pointer;
            text-decoration: underline;
        }

.form_wrapper {
    grid-area: form_wrapper;
}

    .form_wrapper .input-holder, .requiredField {
        color: #4d4d4d;
    }

    .form_wrapper .input-holder {
        color: #4d4d4d;
        font-size: 15px;
        font-weight: 400;
    }

#register-form, .show_address {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
}


.show_address {
    animation: show 1s linear;
    overflow: hidden;
}





@keyframes show {
    0% {
        max-height: 0px;
    }

    100% {
        max-height: 500px;
    }
}










.show_address_button, .show_address {
    grid-column: span 2;
}

.show_address_button {
    display: flex;
    align-items: center;
}

    .show_address_button label {
        margin-bottom: 0px;
    }

#register-form + #promotionCodeDiv {
    margin-top: 38px;
    border-top: 1px solid #88817e;
    padding-top: 20px;
}


.submit-button {
    text-align: center;
}

.registerLoader {
    color: transparent;
    background-image: url('./Images/woosh_loader_2.gif');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 35px;
}

.submit-button button {
    float: none;
    width: auto;
    height: auto;
    line-height: normal;
    background-color: #00adf0;
    border-radius: 0px;
    padding: 5px 16px;
    text-transform: uppercase;
    margin-top: 35px;
}

#GeneralError, .submit-button ~ .error-message {
    text-align: center;
    margin-top: 10px;
}

/*media query tablet*/
@media only screen and (max-width: 1199px) {
    .container {
        max-width: 768px;
    }

    .grid {
        display: block;
    }

    .show_address_button, .show_address {
        grid-column: span 1;
    }


    #register-form, .show_address {
        grid-template-columns: 1fr;
    }

    .form_wrapper {
        margin-top: 35px;
    }

    .bottom-left {
        padding: 20px 20px;
        margin-top: 20px;
    }
}

/*//media query mobile*/
@media only screen and (max-width: 767px) {
    .container {
        max-width: none;
    }

    .top_left {
        padding: 30px 20px;
    }

    #registerCaptcha {
        transform: scale(0.7) translateX(-50px);
        max-width: 320px;
    }
}
