
/* SIGN UP */
.signUpView {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.signUpForm {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    padding: 15px 15px 25px 15px;
    background-color: #fff;
    font-family: 'Montserrat' !important;
    font-size: 14px;
}
.signUp-image {
    display: block;
    width: 50%;
}
.signUp-image img {
    width: 100%;
    height: auto;
}
.signUpForm h3 {
    font-size: 35px !important;
    text-align: left;
    font-family: 'Montserrat' !important;
    margin: 10px 0 !important;
    color: #1F2732 !important;
}
.signUpForm-divider {
    width: 100%;
    height: 2px;
    background-color: rgba(100,100,100,0.2);
}
.signUpForm-backBtn {
    display: inline-block;
    flex-direction: row;
    width: auto;
    height: auto;
    margin: 20px auto 10px 0;
    cursor: pointer;
}
.signUpForm-backBtn:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
}
.signUpForm-backBtn:hover:after {
    width: 100%;
}
.signUpForm-backBtn i {
    font-size: 18px;
    color: #1F2732;
}
.signUpForm-backBtn span {
    margin-left: 10px;
    font-size: 16px;
    color: #1F2732 !important;
    font-weight: 400;
}
.signUpForm-prompt-text {
    display: block;
    font-size: 20px;
    font-weight: 400;
    margin: 15px 0;
    text-align: left;
    color: #1F2732;
}
.signUpForm-prompt-buttons {
    display: flex;
    flex-direction: row;
}
.signUpForm-prompt-buttons .diyBtn:first-child {
    margin-right: 15px;
}
.signUpForm-fields {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box!important;
    padding: 10px 10px 10px 0;
}
.signUpForm-fields .wd-50 {
    width: 48%;
}
.signUpForm-fields .wd-100 {
    width: 100%;
}
.signUpForm-fields>div>label {
    display: block;
    color: #1F2732;
    font-size: 16px;
    text-align: left;
    font-weight: 400;
}
.signUpForm-fields div.site_language {
    margin-bottom: 20px;
}
.signUpForm-fields>div>input, .signUpForm-fields>div>select {
    width: 100% !important;
    font-family: 'Montserrat';
    font-size: 16px !important;
    padding: 10px !important;
    border: 1px solid #2e2e2e !important;
    border-radius: 5px;
    margin: 5px 0 !important;
    box-sizing: border-box;
    background-color: #fff !important;
    color: #111 !important;
    height: 45px !important;
}
.signUpForm-fields input::placeholder {
    color: #111;
}
.signUpForm-message {
    display: block;
    font-size: 16px;
    color: #1F2732 !important;
    text-align: left;
    font-weight: 400;
}
.hidden {
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    transform: translateY(100vh);
    pointer-events: none;
    transition: transform .45s ease-out;
}
.shown {
    opacity: 1;
    height: auto;
    transform: translateY(0vh);
    pointer-events: all;
    transition: transform .45s ease-out;
}
.swal2-container {
    font-family: 'Montserrat';
}
/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    .signUpView {
        width: 100% !important;
        flex-direction: column !important;
    }
    .signUpForm {
        width: 100% !important;
        order: 1 !important;
        padding: 5px 5px 10px 5px !important;
    }
    .signUp-image {
        width: 100% !important;
    }
    .signUpForm h3 {
        font-size: 25px !important;
    }
    .signUpForm-prompt-text {
        font-size: 16px !important;
    }
    .signUpForm-fields>div>label {
        font-size: 15px !important;
    }
    .signUpForm-fields>div>input, .signUpForm-fields>div>select {
        font-size: 15px !important;
    }
    .signUpForm-fields .wd-50 {
        width: 100% !important;
    }
}