div.register-container
{
    width: 95%;
    margin: 0 auto;
}

p.register-top
{
    font-size: 1.2rem;
    margin: 0;
    padding: 24px 0;
}

div.register-form-container
{
    width: 80%;
    margin: 0 auto;
    display: flex;
    border: 1px solid black;
    border-radius: 25px;
    height: 950px;
    overflow: hidden;
}

div.form-left-side
{
    width: 50%;
    overflow: hidden;
}

div.form-right-side
{
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 60px 24px;
}

div.register-form-row
{
    width: 100%;
    display: flex;
    margin: 15px 0;
}

div.register-form-row-full
{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 12px;
}

div.register-form-row-checkbox
{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 12px;
}

div.register-form-row-half
{
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 0 12px;
}

label.register
{
    font-size: 1.2rem;
}

img.register_currency
{

}

.select2-selection__rendered
{
    font-size: 1.2rem !important;
    font-family: 'Zen Kaku Gothic Antique', sans-serif !important;
    color: black !important;
}

.select2-container .select2-selection--single
{
    height: 32px !important;
    border-radius: 0px !important;
    border: 1px solid #0e0e0e !important;
    width: 100%;
}

.select2-selection__arrow b
{
    border-color: #000 transparent transparent transparent !important;
    margin-top: 0px !important;
}

img.register-option-icon
{
    height: 24px;
    margin: 0;
    vertical-align: bottom;
    padding: 0;
}

.g-recaptcha
{
    display: flex;
    justify-content: center;
    margin: 12px auto 24px
}

button.register
{
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    border: 1px solid #0e0e0e;
    cursor: pointer;
    background-color: #e77ab7;
    padding: 10px 32px;
    border-radius: 8px;
    position: relative;
    width: 45%;
    margin: 0 auto;
}

/* underline */
button.register::after
{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px; /* adjust vertical position */
    width: 0%;
    height: 2px;
    background: #0e0e0e;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

button.register:hover::after
{
    width: 80px;
}

button.register:active
{
    background-color: #FFFFFF;
}

img.reg-form-image
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

form.register
{
    padding-bottom: 60px;
    margin-bottom: 0;
}

input[type="checkbox"].register
{
    transform: scale(1.8);
    transform-origin: top left;
    margin: 6px 15px 6px 0;
}

p.password-notice
{
    margin: 16px 12px 0px;
}

.input-error
{
    border: 1px solid #cc2d1c;
}

/* #Mobile */
@media (max-width: 767.99px) {
    div.register-form-container
    {
        width: 100%;
    }
    
    div.form-left-side
    {
        display: none;
    }

    div.form-right-side
    {
        width:100%;
    }

    input[type="checkbox"].register
    {
        transform: scale(1.5);
    }
}

/* #Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    div.register-form-container
    {
        width: 100%;
    }

    div.form-left-side
    {
        display: none;
    }

    div.form-right-side
    {
        width:100%;
    }

    input[type="checkbox"].register
    {
        transform: scale(1.5);
    }
}


/* #laptop Small laptops and large tablets */
@media (min-width: 1025px) and (max-width: 1280px) {
    div.register-form-container
    {
        width: 100%;
    }
}