@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    font-family: 'Open Sans', sans-serif;
    height: 100%;
}

.login-page-container {
    border-radius: 30px;
    background-color: #fff;
    gap: 20px;
    display: flex;
    height:100%;
}

.column-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: normal;
    width: 50%;
    margin-left: 0px;
    background-color: #267aa3;
    /*border-radius: 0px 50% 50% 0px;*/
    clip-path: ellipse(98% 102% at left center);
    height:100%;
}

.column-2 {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 50%;
    margin-left: 20px;
    padding-right: 100px;
    padding-left: 40px;
}

.title {
    color: #fff;
    white-space: nowrap;
    font: 700 128px Fredoka, sans-serif;
    
    sub {
        font-size: 22px;
    }
}

.spacer {
    text-align: center;
    height: 3em;
    color: #999999;
}

.spacer a {
    color: #267AA3;
    font-weight: 700;
    text-decoration: none;
    
    &:hover {
        filter: brightness(1.12796) hue-rotate(-0.53deg) saturate(.85);
    }
}

.login-content {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    font-size: 20px;
    color: var(--accent);
    font-weight: 600;
    margin: auto 0;
    padding: 0 20px;
}

.welcome-label {
    font-weight: 700;
    font-size: 44px;
    margin-bottom: 48px;
    color: #E17B2A;
}



.form-label {
    color: #999;
    font-size: 20px;
    font-weight: 400;
}

.form-floating .form-control {
    padding: .75rem .8rem;
    height: calc(3.5rem);
    
    &:focus {
        border-color: rgba(225, 124, 42, 0.30);
        box-shadow: 0 0 0 .25rem rgba(225, 124, 42, 0.30);
    }
}

.form-floating label {
    padding: .75rem;
}

#login-submit {
    font-weight: 600;
}

#register-submit {
    font-weight: 600;
}

#reset-password-submit {
    font-weight: 600;
}

.email-label {
    color: #000;
    line-height: 129%;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .div-6 {
        max-width: 100%;
        margin-top: 40px;
    }
}

.password-label {
    color: #000;
    line-height: 129%;
    margin-top: 42px;
    margin-bottom: 10px;
}

.forgot-password {
    display: flex;
    justify-content: end;
}

.forgot-password a{
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 194%;
    font-weight: 700;
    color: #E17B2A;
    text-decoration: none;

    &:hover {
        filter: brightness(1.12796) hue-rotate(-0.53deg) saturate(.85);
    }
}

.divider {
    height:4px !important;
    color: #aaa;
    margin-top: 40px;
}

.sign-up {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    font-size: 18px;
    line-height: 194%;
}

.sign-up a {
    color: #E17B2A;
    font-weight: 700;
    
    &:hover {
        filter: brightness(1.12796) hue-rotate(-0.53deg) saturate(.85);
    }
}

.sign-in-button {
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #267aa3;
    margin-top: 33px;
    color: var(--text-white, #fff);
    text-align: center;
    letter-spacing: -0.48px;
    line-height: 75%;
    padding: 18px 60px;
    border-width: 0;
    width:100%;
}

.sign-in-button:hover {
    background-color: #1f5f7b;
}

.welcome-text {
    color: #000;
    font-weight: 600;
    font-size: 20px;
}

.form-content {
    padding: .5em .75em;
    max-height: 450px;
    overflow-y: scroll;
}

.register-form-content {
    padding: .5em .75em;
    max-height: 450px;
    overflow-y: auto;
}

#forgot-password-label {
    font-weight: 700;
    font-size: 44px;
    color: #E17B2A;
}

#forgot-password-hr {
    margin: 16px 0 42px;
}

@media (max-width: 991px) {
    .login-page-container {
        flex-direction: column;
    }

    .column-1 {
        width: 100%;
        height: 20%;
        clip-path: ellipse(80% 98% at top center);
    }

    .column-2 {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .title {
        font-size: 48px;
    }
    
    .welcome-label {
        display: none;
    }
    
    .email-label {
        margin-top: 20px;
        font-size: 16px;
    }

    .password-label {
        margin-top: 20px;
        font-size: 16px;
    }

    .forgot-password a{
        font-size: 16px;
    }

    .sign-up a, .sign-up span {
        font-size: 16px;
    }
}