:root,
body {
    font-family: Inter, sans-serif;
    /* fix for Chrome */
    font-feature-settings:
        "liga" 1,
        "calt" 1;

    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smooth: never;
}

@supports (font-variation-settings: normal) {
    :root,
    body {
        font-family: InterVariable, sans-serif;
    }
}

body,
html {
    background-size: cover;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.auth-content {
    margin: 0;
    display: flex;
    height: 100%;
    width: 100%;
    min-height: 100vh;
}

.h-100 {
    height: 100%;
}

.left-content-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 50%;
}

.left-content {
    position: relative;
    width: clamp(250px, 100%, 400px);
    margin: 40px auto;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
}

.header {

}

.header-logo {

}

.form-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header-container {
        display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 40px;
}

.form-header {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: #2d2b32;
    margin: 0;
}

.form-subheader {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #4f4d55;
    margin: 0;
}

.right-content {
    background: #09072b;
    color: white;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-sign-in {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-control {
    border: 1px solid #c9c9cc;
    padding: 8px 12px;
    border-radius: 8px;
}

.form-control::placeholder {
    font-size: 14px;
    line-height: 20px;
    color: #7f7d83;
}

.form-control:focus {
    border: 1.5px solid #574bea !important;
    box-shadow: none !important;
}

.custom-select.is-invalid:focus, .form-control.is-invalid:focus, .was-validated .custom-select:invalid:focus, .was-validated .form-control:invalid:focus {
    box-shadow: none;
}

.right-header-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 109px;
    padding-left: 94px;
}

.right-header {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
}

.right-subheader {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    max-width: 720px;
    color: #f1f5f8;
}

.customers {
    max-width: 700px;
    padding-left: 94px;
    margin-top: 40px;
    margin-bottom: 47px
}

.appradar-example {
    position: relative;
}

.appradar-example img {
    position: absolute;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited {
    background-color: #574bea;
    border-color: #574bea;
    cursor: pointer;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: #20038b;
}

.btn-primary:disabled {
    background: #f1f1f1;
    border: 0;
    color: rgb(79, 77, 85);
    opacity: 0.65;
    cursor: initial;
}

.forgot-password,
.forgot-password:hover,
.forgot-password:active,
.forgot-password:visited {
    color: #574bea;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    display: block;
}

.go-back a, .go-back a:hover, .go-back a:active, .go-back a:visited {
    font-size: 14px;
    line-height: 20px;
    color: #574BEA;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms {
    font-size: 12px;
    color: #7f7d83;
    font-weight: 400;
}

a,
a:hover,
a:active,
a:visited {
    color: #574bea;
    text-decoration: none;
}

.no-account {
    font-size: 14px;
    line-height: 20px;
    color: #7f7d83;
    text-align: center;
    font-weight: 500;
}

.form-group {
    position: relative;
    margin: 0;
}

.form-group-addon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.invalid-feedback,
.invalid-feedback-be {
    color: #e12121;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.invalid-feedback-be {
    display: none;
}

.was-validated .invalid-feedback-be {
    display: block;
}

.remove-default-validator .invalid-feedback {
    display: none !important;
}

#eye-open {
    display: none;
}
#eye-closed {
    display: block;
}

.eye-open #eye-open {
    display: block;
}

.eye-open #eye-closed {
    display: none;
}

.custom-select.is-valid, .form-control.is-valid, .was-validated .custom-select:valid, .was-validated .form-control:valid {
    border: 1px solid #c9c9cc;
}

.custom-select.is-valid:focus, .form-control.is-valid:focus, .was-validated .custom-select:valid:focus, .was-validated .form-control:valid:focus{
    box-shadow: none;
}

.was-validated .form-control:valid~.invalid-feedback, .was-validated .form-control:valid~.invalid-feedback-be {
    display: none;
}

.sample-image {
    background-image: url(../images/appradar-example.svg);
    height: 100%;
    width: 100%;
    margin-left: 94px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 800px) {
    .right-content {
        display: none;
    }
    .left-content-container {
        width: 100%;
    }
}