﻿section#login-container {
    height: 100vh;
}

form {
    background-color: rgba(255,255,255);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgb(8 7 16 / 20%);
    padding: 20px;
}

    form * {
        outline: none;
        border: none;
    }

    form h3 {
        font-size: var(--h3-fs);
        font-weight: 600 !important;
        line-height: 40px;
        text-align: center;
    }

#login-form {
    padding: 60px 40px;
}

button {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    font-size: var(--body-fs) !important;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    height: 42px !important
}

#login-container > div {
    background: url(../img/auth/login-bg.png);
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: top;
    border-radius: 60px !important;
    position: relative;
}


.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    opacity: 1;
    background: white;
    padding: 2px 6px;
    font-weight: 600;
    color: var(--primary-dark);
    height: auto;
    transform: scale(.85) translateY(-1rem) translateX(.55rem);
}

.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 0.625rem;
    padding-bottom: .625rem;
}

.form-floating > .form-control, .form-floating > .form-select {
    height: 42px;
}

.form-floating > label {
    height: 100%;
    font-size: var(--body-fs);
    font-weight: 400;
    color: var(--text-color);
    padding: .55rem .75rem;
}

.margin-large {
    margin-left: 12rem;
}

form li {
    font-size: 12px
}

form ul {
    padding-left: 15px
}

span.error {
    display: block;
    color: #dc3545;
    font-size: 0.875em;
}

#login-btn{
    height: 42px !important
}

@media only screen and (max-width: 1400px) {
    form h2 {
        font-size: 20px;
        line-height: 40px;
        text-align: center;
    }

    form#login-form {
        padding: 40px 40px;
    }

    .margin-large {
        margin-left: 8rem;
    }
}
.w-60{
    width: 60% !important
}

@media only screen and (min-width: 600px){
    form {
        min-width: 400px;
        padding: 30px;
    }
}
