* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rethink Sans', Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.left-side {
    width: 52%;
    position: relative;
    padding: 5.5rem;
    color: white;
}

.left-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/image-register.png');
    background-size: cover;
    background-position: center;
}

.branding {
    position: relative;
    z-index: 1;
    max-width: 80%;
    height: 100%;
}

.logo {
    width: 345px;
    margin-bottom: 18px;
}

.info {
    position: absolute;
    bottom: 0;
}

.slogan {
    font-family: 'Rethink Sans', Arial, Helvetica, sans-serif;
    font-size: 85px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 85px;
}

.slogan em {
    font-style: italic;
}

.subtext {
    font-family: 'Rethink Sans', Arial, Helvetica, sans-serif;
    font-size: 37px;
    line-height: 44px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.right-side {
    width: 45%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.logo-mobile {
    display: none;
}

.form-container {
    width: 100%;
    max-width: 540px;
}

.form-title {
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
}

.login-prompt {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #000000;
    position: absolute;
    top: 40px;
    right: 120px;
}

.login-prompt a {
    color: #035ff0;
    text-decoration: none;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}

.label-terms {
    display: block;
    margin-left: 8px;
    margin-bottom: 0px;
    font-size: 13px;
    color: #000000;
    font-weight: 400;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 9px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #0096ff;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 52%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.password-wrapper {
    position: relative;
}

.label-forgot {
    display: flex;
    justify-content: space-between;
}

.forgot-password {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    color: #000000;
    font-weight: 400;
    text-decoration: none;
}

.btn {
    width: 100%;
    padding: 18px;
    background-color: #035ff0;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 21px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 7px;
}

.btn:hover {
    background-color: #0085e0;
}

.terms-checkbox {
    margin-top: 20px;
    margin-bottom: 17px;
    font-size: 0.75rem;
    color: #000000;
    display: flex;
    align-items: center;
}

.terms-checkbox a {
    color: #0096ff;
    text-decoration: none;
}

.form-floating.wc-input { position: relative; }
.form-floating.wc-input > .form-control { border:2px solid #7d89af94 !important; border-radius:10px !important; background:#fff; box-shadow:none; padding:35px 14px 15px; height:auto; line-height:1.4; color:#111; transition:border-color .2s, box-shadow .2s; }
.form-floating.wc-input > .form-control:hover { border-color:#b7c3ff; }
.form-floating.wc-input > .form-control:focus { border-color:#5b6ef5; box-shadow:0 0 0 3px rgba(91,110,245,.12); }
.form-floating.wc-input > .form-control::placeholder { color:transparent; }
.form-floating.wc-input > label { position:absolute; top:26px; left:10px; padding:0 6px; font-size:22px; line-height:1; color:#8e98ba !important; background:transparent; pointer-events:none; transform:none; opacity:1; z-index:1; height:auto; }
.form-floating.wc-input > .form-control:focus ~ label,
.form-floating.wc-input > .form-control:not(:placeholder-shown) ~ label,
.form-floating.wc-input > .form-control:-webkit-autofill ~ label{ transform:none; top:15px; font-size:15px; opacity:1; }
.form-floating.wc-input.has-toggle > .form-control { padding-right:48px; }
.form-floating.wc-input .toggle-password { position:absolute; top:50%; right:15px; transform:translateY(-50%); cursor:pointer; line-height:1; display:flex; align-items:center; z-index:2; }
.form-floating.wc-input .toggle-password i { font-size:1.5rem; color:#000000; transition:color .2s; }
.form-floating.wc-input .toggle-password:hover i { color:#5b6ef5; }
.form-floating.wc-input.has-lefticon > .form-control { padding-left:46px; }
.form-floating.wc-input .left-icon { position:absolute; top:50%; left:15px; transform:translateY(-50%); pointer-events:none; display:flex; align-items:center; line-height:1; z-index:2; }
.form-floating.wc-input .left-icon i { font-size: 1.5rem; color: #7d89af; }
.form-floating.wc-input.has-lefticon > label { left:45px; }
.form-floating.wc-input.has-lefticon > .form-control:focus ~ label,
.form-floating.wc-input.has-lefticon > .form-control:not(:placeholder-shown) ~ label,
.form-floating.wc-input.has-lefticon > .form-control:-webkit-autofill ~ label { left:40px; }

.btn-forgot { font-size: 18px; font-weight: 700; color: #035ff0; padding-bottom: 25px; float: right; text-decoration: underline; }

@media (max-width: 1550px) and (min-width: 1401px) {
    .logo { width: 275px; margin-bottom: 18px; }
    .slogan { font-size: 66px; line-height: 66px; margin-bottom: 15px; }
    .subtext { font-size: 28px; line-height: 35px; }

    .right-side { width: 48%; }
    .form-container { max-width: 450px; }
    .form-title { font-size: 3.2rem; line-height: 3.2rem; }
    .form-floating.wc-input > .form-control { padding: 25px 15px 10px; }
    .form-floating.wc-input > label { top: 20px; font-size: 17px; }
    .form-floating.wc-input > .form-control:focus ~ label, .form-floating.wc-input > .form-control:not(:placeholder-shown) ~ label, .form-floating.wc-input > .form-control:-webkit-autofill ~ label { top: 14px; }
    .form-floating.wc-input .left-icon i { font-size: 1.3rem; }
    .form-floating.wc-input .toggle-password i { font-size: 1.3rem; }
    .btn { padding: 16px; font-size: 19px; }

    .login-prompt { font-size: 16px; }
    .btn-forgot { font-size: 16px; padding-bottom: 15px; }
}

@media (max-width: 1400px) {

    .left-side { padding: 4rem; }
    .info { bottom: -40px; }
    .logo { width: 245px; }
    .slogan { font-size: 60px; line-height: 60px; margin-bottom: 15px; }
    .subtext { font-size: 26px; line-height: 32px; }

    .form-container { max-width: 380px; }
    .form-title { font-size: 2.7rem; line-height: 2.8rem; margin-bottom: 20px; }

    .form-floating.wc-input > .form-control { padding: 25px 14px 5px; }
    .form-floating.wc-input > label { top: 20px; font-size: 16px; }

    .form-floating.wc-input .left-icon i { font-size: 1.2rem; }
    .form-floating.wc-input.has-lefticon > label { left: 35px; }
    .form-floating.wc-input .toggle-password i { font-size: 1.2rem; }
        
    .btn-forgot { font-size: 15px; padding-bottom: 20px; }
    .btn { padding: 12px; font-size: 15px; }

    .login-prompt { font-size: 15px; }

    .form-floating.wc-input > .form-control:focus ~ label, .form-floating.wc-input > .form-control:not(:placeholder-shown) ~ label, .form-floating.wc-input > .form-control:-webkit-autofill ~ label { transform: none; top: 12px; font-size: 12px; opacity: 1; }
}

@media (max-width: 768px) {

    body {
        flex-direction: column;
        height: auto;
        overflow: auto;
    }
    
    .left-side {
        width: 100%;
        height: 350px;
        padding: 2rem 1.5rem;
    }

    .left-side::before { background-position: bottom; }

    .right-side {
        width: 100%;
        height: auto;
        padding: 2rem 1.5rem;
    }

    .branding { max-width: 90%; }

    .info { bottom: 10px; }

    .logo { width: 190px; }
    
    .slogan { font-size: 40px; line-height: 42px; }
    .subtext { font-size: 19px; line-height: 29px; }

    .form-title {
        font-size: 2rem;
        line-height: 2rem;
        padding-top: 14px;
    }

    .login-prompt {
        font-size: 19px;
        font-weight: 700;
        margin-top: 22px;
        margin-bottom: 22px;
        color: #000000;
        position: initial;
        text-align: center;
    }
}