@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.12.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');


* {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin: 0px;
}

a {
    text-decoration: none;
    color: #202020;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0px;
    /* background: linear-gradient(to right, #202020, #fff); */
    background-image: url(/static/images/login/bg-login.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1300px;
    height: 800px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.103);
    border-radius: 50px;
    overflow: hidden;
    animation: slideup 1s ease-in-out;
    margin: 10px;
    position: relative;
}

.logo-login {
    position: absolute;
    left: 10px;
    top: 150px;
    padding: 0px 55px;
    cursor: pointer;
}

.logo-group::before {
    content: "";
    position: absolute;
    left: 40px;
    width: 5px;
    background: #202020;
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 28px;
}

.logo-group:hover::before {
    background: #9c9c9c;
    width: 8px;
}

.logo-group img {
    width: 100px;
}

.login-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.login-group .title-primary {
    font-weight: 800;
}

.login-group .title-secundary {
    font-weight: 300;
}

.divForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;;
    height: 100%;
    background-color: #fff;
    padding: 0px 50px;
}

.inputGroup {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    gap: 20px;
}

.inputGroup .name,
.inputGroup .password {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 100%;
}

.name input,
.password input {
    max-width: 100%;
    padding: 5px 30px 10px 10px;
    outline: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.329);
    transition: all 0.3s;
}

.name input:focus,
.password input:focus,
.name input:hover,
.password input:hover {
    transform: scale(1.01);
    border-bottom: 1px solid green;
}

.name label i {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.password i {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.aviso {
    text-align: center;
}

.btn-primary-login {
    width: 100%;
    padding: 12px 0px;
    border-radius: 5px;
    border: none;
    background-color: #202020;
    color: #fff;
    transition: all 0.3s;
}

.btn-primary-login:hover {
    background-color: #8f8f8f;
}

.banner-login {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(200px);
    -webkit-backdrop-filter: blur(200px);
    box-shadow: inset 0px 0px 12px #ffffff73;
    border-radius: 0px 50px 50px 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: relative;
    color: #fff;
}

.banner-login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 50%);
}

.banner-login .version-logo {
    width: 300px;
    filter: invert(100%);
}

.banner-login .version {
    position: absolute;
    left: 10px;
    bottom: 10px;
    color: #fff;
}

@keyframes slideup {
    to {
        opacity: 100;
        transform: translateY(0px);
        opacity: 1;
        backdrop-filter: blur(200px);
    }

    from {
        opacity: 0;
        transform: translateY(100px);
        opacity: 0;
        backdrop-filter: blur(0px);
    }
}


@media only screen and (max-width: 1350px) {
    body {
        height: 85vh;
    }

    .container {
        width: 900px;
        height: 600px;
    }

    .logo-login {
        top: 70px;
    }
    .title-curiosidades{
        font-size: 15px;
    }
    .curiosidade p{
        font-size: 9px;
        align-items: center;
    }
}

@media only screen and (max-width: 900px) {

    .container{
        width: 500px;
    }

    .banner-login {
        display: none;
    }
}

@media only screen and (max-width: 530px) {

    .container{
        width: 320px;
    }

    .banner-login {
        display: none;
    }
}
