html {
    height: 100%;
}

body * {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    letter-spacing: 0.25px;
    font-size: 15px;
    color: white;
    transition: all 0.3s;
}

body a {
    font-weight: 500;
    color: white;

}

body a:focus,
body a:hover {
    color: white;
    text-decoration: underline;
}

body {
    width: 100%;
    height: 100%;
    background: #03121d;
}

.logo {
    width: 100%;
}

.back-to-website-link-container {
    text-align: center;
    margin-top: 15px;
}

.form {
    display: flex;
    margin-top: 200px;
    justify-content: space-around;
    align-items: stretch;
    align-content: stretch;
}

.left-column {
    width: 40%;
    padding-bottom: 50px;
}

.left-column img {
    max-height: 125px;
    width: auto;
    margin-bottom: 30px;
}

h1, h2 {
    font-size: 36px;
}

.left-column h1 {
    text-align: left;
    font-size: 24px;
    line-height: 24px;
    position: relative;
    top: -8px;
    font-weight: bold;
}

.left-column p {
    margin-top: 21px;
    line-height: 23px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.left-column ul {
    text-align: left;
    padding-left: 0;
    padding-top: 0;
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    font-style: normal;
}

.left-column ul li {
    list-style: none;
}

.right-column {
    width: 40%;
    align-self: center;
    margin-left: -109px;
    padding-bottom: 50px;
}

.right-column .form-group {
    margin-bottom: 20px;
}

.right-column .recaptcha {
    margin-top: 10px;
    margin-bottom: 20px;
}

.btn.submit-btn {
    background: #178ad2;
    border: 2px solid #fff;
    border-radius: 0;
    font-weight: bold;
    height: 56px;
}

.intl-tel-input .country-list {
    background: #178ad2;
}

.help-block {
    text-align: center;
    margin-left: 3px;
    color: red;
    line-height: 26px;
}

.signup-errors, 
.form-errors {
    color: #fff000;
}

.password-form input {
    height: 40px;
}

.password-form .form-control {
    background: linear-gradient(0deg, rgba(39, 84, 159, 0.25), rgba(39, 84, 159, 0.25)), #03121D;
    border: none;
    color: white;
    border-radius: 12px;
}
.password-form .form-control:focus {
    background: linear-gradient(0deg, rgba(39, 84, 159, 0.45), rgba(39, 84, 159, 0.45)), #03121D;
    box-shadow: 0 0 0 3px #48C7F4;
}
.password-form .form-control:active {
    background: linear-gradient(0deg, rgba(39, 84, 159, 0.45), rgba(39, 84, 159, 0.45)), #03121D;
    box-shadow: 0 0 0 2px #48C7F4;
}
.password-form .form-control:hover {
    background: linear-gradient(0deg, rgba(39, 84, 159, 0.35), rgba(39, 84, 159, 0.35)), #03121D;
}

.password-form .form-group.has-error .form-control,
.password-form .form-group.has-error .form-control:focus,
.password-form .form-group.has-error .form-control:active,
.password-form .form-group.has-error .form-control:hover {
    background: linear-gradient(0deg, rgba(246, 51, 51, 0.25), rgba(246, 51, 51, 0.25)), linear-gradient(0deg, rgba(39, 84, 159, 0.25), rgba(39, 84, 159, 0.25)), #03121D;
    box-shadow: 0 0 0 3px #F63333;
}

.password-form label {
    font-weight: 500;
    margin-bottom: 8px;
}

.password-form .btn.submit-btn {
    width: 155px;
    height: 40px;
    background: #27549F;
    border-radius: 12px;
    font-size: 15px;
    padding: 0;
}

.password-form .btn.submit-btn {
    border-radius: 12px;
    padding: 5px 3px 3px 3px;
    border-color: transparent;
    border-width: 1px;
    border-style: solid;
    background-color: #27549F;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 4px;
}
.password-form .btn.submit-btn:hover {
    background: linear-gradient(0deg, rgba(39, 84, 159, 0.75), rgba(39, 84, 159, 0.75)), #48C7F4;
    color: inherit;
}

.password-form .btn.submit-btn:active {
    background: linear-gradient(0deg, rgba(39, 84, 159, 0.35), rgba(39, 84, 159, 0.35)), #48C7F4;
    color: inherit;
}

.password-form .btn.submit-btn:focus {
    background: #48C7F4;
    color: inherit;
    outline: none;
}

footer {
    position: fixed;
    bottom: 0;
    height: 78px;
    left: 154px;
    font-weight: 700;
}

footer .footer-container {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    height: 100%;
}

footer .footer-container > div {
    align-self: center;
}

footer .footer-container .image-container img {
    margin-top: -12px;
}

footer .footer-container .info-container {
    font-size: 13px;
    font-weight: 700;
    margin-left: 25px;
}

.password-form-success {
    margin-left: 5px;
    margin-top: 46px;
}
.password-form-success h2 {
    font-size: 24px;
}
.password-form-success .redirect-message {
    font-size: 15px;
    font-weight: 500;
    margin-top: 27px;
    letter-spacing: 0.25px;
    margin-left: 0;
    line-height: 23px;
}

@media (max-width: 1199px) {
    .left-column {
        width: 35%;
    }

    .right-column {
        width: 45%;
    }

    .left-column img {
        max-height: 100px;
    }
}

@media (max-width: 991px) {
    .form {
        flex-direction: column;
        margin-top: 50px;
    }

    .left-column,
    .right-column {
        width: 100%;
    }

    .left-column img {
        max-height: 90px;
    }

    .btn.submit-btn {
        font-size: 15px;
    }

    .right-column {
        margin-left: 0;
    }
}
