html, body {
    height: 100%;
    margin: 0;
    justify-content: center;
    align-items: center;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    display: flex;
}

#main {
    display: contents;
}

#content {
    display: contents;
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.left {
    flex: 1 1 50%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(98.1deg, #3374AD 0%, #205888 100%);
}
.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    padding: 80px 38px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-logo {
    margin-bottom: 88px;
    max-width: 132px;
}
.content-logo img{
    width: 100%;
}

.content-main {
    margin-bottom: 66px;
}

.content-main h1 {
    margin-bottom: 16px;
}

.content-main p {
    margin-bottom: 43px;
}

.content-main ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 0;
}

.content-main ul li {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

#password, #confirm_password {
    -webkit-text-security: disc;
    text-security: disc;
    font-family: password;
}

.content-main ul li i {
    width: 32px;
    height: 32px;
}

.content-main ul li i img {
    width: 100%;
}

.content-main h1 {
    font-size: 2.8rem;;
    margin-bottom: 20px;
    font-weight: 600;
    margin-top: 0;
}

.content-images {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.content-images .img-raccoon {
    max-width: 30%;
}

.content-images .img-raccoon img{
    width: 100%;
}

.content-images .img-arrow {
    max-width: 50%;
    margin-right: 47px;
}

.alert-danger {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 0px;
    border: none;
    border-radius: 8px !important;
}

.content-images .img-arrow img{
    width: 100%;
}

.rectangles {
    background-image: linear-gradient(to right, rgba(96, 180, 209, 0.2) 2px, transparent 1px),
                      linear-gradient(rgba(96, 180, 209, 0.2) 2px, transparent 1px);
    background-size: 60px 60px;
    height: 100%;
    width: 100%;
}

.left ul {
    list-style: none;
    padding: 0;
}

.left li::before {
    margin-right: 10px;
}

.right {
    flex: 1 1 50%;
    padding: 183px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    color: #555555;
    background-color: white;
    align-items: center;
}

.right h2 {
    font-size: 4.5rem;
    margin-bottom: 16px;
    font-weight: 600;
    color: #0A0A0A;
    font-family: 'Montserrat', sans-serif;
}

input[type="text"] {
    font-size: 18px;
    height: 46px;
    margin-top: 20px;
    border: none;
    border-radius: 8px !important;
    background-color: #F3F3F4 !important;
}

.checkbox-inline {
    margin-top: 20px;
}

a.btn, button.btn {
    padding: 10px;
    margin-top: 20px;
    height: 48px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    width: 100%;
}

a {
    color: #2E6DA4;
    text-decoration: none;
}

.signin {
    margin-top: 25px;
}

.consent-widget {
    position: fixed;
    bottom: 5px;
    cursor: pointer;
    z-index: 9999;
    border: 2px solid #555555;
    border-radius: 50%;
    background: #FFFFFF;
    padding: 10px;
    opacity: 0.5 !important;
    font-size: 7px;
    left: 5px !important;
}

.form-message {
    margin-top: 20px;
}

.mobile-logo {
    display: none;
}

.mobile-logo img {
    width: 40%;
}

.terms-notice {
    margin-top: 15px;
    font-size: 14px;
}

.btn.secondary {
    margin-top: 10px;
    background-color: white;
    color: #000000;
    border: 1px solid #dfb4b44d;
}

.login-options {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .left {
        display: none;
    }

    .form-container {
        width: 100%;
        padding: 20px;
    }

    .mobile-logo {
        text-align: center;
        display: block;
    }

    .content-logo {
        margin-bottom: 20px;
    }

    .container {
        display: block;
    }

    .content {
        padding: 20px;
    }

    .left {
        flex: 1 1 100%;
        padding: 0;
    }

    .right {
        flex: 1 1 100%;
    }

    input[type="text"] {
        width: 100%;
    }


    .alert-danger {
        width: 100%;
    }

    .right h2 {
        font-size: 28px;
    };
}

@media (min-width: 769px) {
    .left {
        max-width: 42%;
    }

    .container {
        height: 100%;
    }

    .signup-form, .forgot-form, .signin-by-email-form {
        margin-left: 70px;
        width: 70%;
    }

    .signup-form.success {
        margin-top: 30px
    }
}
