* {
    outline: none;
}

.welcome-container {
    width: 100%;
    height: 100%;
    display: block;
}
.welcome-container .bg-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: .95;
}
.welcome-container .bg-content .vd {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    z-index: 2;
}
.welcome-container .bg-content img {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177vh;
    position: absolute;
    border: 0;
    z-index: 2;
    object-fit: cover;
}

.welcome-container .content-container {
    background: radial-gradient(ellipse at bottom, rgba(20, 20, 20, 0.85), #141414), radial-gradient(ellipse at top, #00ff62, transparent), radial-gradient(ellipse at bottom, #0071a2, transparent);
    align-items: center;
    display: grid;
    grid-template-rows: 1fr;
    height: 100vh;
    overflow-y: auto;
    position: relative;
}
.content-container .form-content {
    align-items: center;
    color: rgba(255, 255, 255, .8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 24px;
    position: relative;
}
.content-container .form-content .top {
    margin-top: 20px;
    text-align: center;
    letter-spacing: -.5px;
    font-weight: 900;
    margin-bottom: 20px;
}
.content-container .form-content .top img {
    width: 250px;
}
.content-container .form-content .person {
    display: flex;
    flex-direction: column;
    max-width: 360px;
    width: 100%;
    margin-bottom: 30px;
}
.content-container .form-content .person .form-group {
    border: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
}
.content-container .form-content .person label {
    margin-bottom: 5px;
    font-size: 1rem;
    color: rgba(255, 255, 255, .5);
}
.content-container .form-content .person input:not([type="checkbox"]){
    font: inherit;
    color: rgba(255, 255, 255, .8);
    padding: 8px 12px;
    border: 0;
    box-sizing: border-box;
    background: 0 0;
    height: 46px;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    display: block;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
}
.content-container .form-content .person .btn-content-login {
    margin-top: 15px;
    background-color: #4a00e0;
    color: #fff;
    padding: 12px 20px;
    font-size: .8125rem;
    align-self: center;
    width: max-content;
    background-image: linear-gradient(-45deg, #645af3, #0071a2);
    border-radius: 400px;
    font-family: roboto, helvetica, arial, sans-serif;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    min-width: 64px;
    transition: background-color 250ms cubic-bezier(.4,0,.2,1) 0ms, box-shadow 250ms cubic-bezier(.4,0,.2,1) 0ms, border-color 250ms cubic-bezier(.4,0,.2,1) 0ms, color 250ms cubic-bezier(.4,0,.2,1) 0ms;
}
.content-container .form-content .person .btn-content-login:hover {
    filter: brightness(1.1);
}
.content-container .form-content .person .forgot-password-link {
    font-size: .75rem;
    color: rgba(255, 255, 255, .8);
    text-decoration: underline;
    margin-top: 20px;
    text-align: center;
}
.content-container .form-content .link {
    color: #089bda;
    text-decoration: underline rgba(8, 155, 218,.4);
}
.container-alert {
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .7);
    font-family: roboto, helvetica, arial, sans-serif;
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .03333em;
    line-height: 1.66;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 3px;
    max-width: 360px;
    padding: 6px;
    text-align: left;
}
.container-alert.err {
    background: rgba(255, 0, 0, .05);
    color: #f44336
}
.content-ipt-terms{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .28rem!important;
    font-size: .75rem!important;
    color: rgba(255, 255, 255, .8)!important;
    margin-top: 20px;
}
.content-ipt-terms input {
    margin: 3px;
}
.content-ipt-terms .link {
    font-size: .75rem;
    color: rgba(255, 255, 255, .8);
    text-decoration: underline;
}


/* RESPONSIVE */
@media (min-width: 1200px) {
    .welcome-container .content-container {
        width: 36vw;
        padding: 0 24px;
        background: rgba(1,1,1,.6);
    }

    @supports (backdrop-filter:blur(50px) brightness(0.4) contrast(0.9)) {
        .welcome-container .content-container {
            background: 0 0;
            backdrop-filter: blur(50px) brightness(.4) contrast(.9);
        }
    }
}

@media (max-height: 500px) {
    .content-container .form-content {
        height: 500px;
        position: relative;
    }
}