@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
*{
    box-sizing: border-box;
}
body{
    background: #fff;
    margin: 0;
    width: 100vw;
    height: 100vh;

    overflow-x: hidden;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    font-family: "Poppins", sans-serif;
}
.container_left{
    width: 50%;
    height: 100vh;


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container_right{
    display: none;
}





form{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items:center;
    max-width: 360px;
    height: 350px;
}

input{
    width: 100% !important;
    height: 60px;
    border-radius: 5px !important;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    padding: 20px;
    color: #020015;
    font-size: 15px;
    font-weight: 700;
}
input:focus{
    outline-color: #020015;
}
.btn-blue{
    width: 360px;
    height: 64px;
    margin: 10px 0 0 0;    
    cursor: pointer;
    background: #020015;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-blue:hover{
    background: #040022;
}
.btn-recupera{
    width: 360px;
    height: 64px;    
    cursor: pointer;
    background: #020015;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}
.logo{
    margin: 0 0 40px 0;
}
a{
    text-decoration: none;
    color: #585858;
    font-size: 13px;
    font-weight: 400;
    transition: 0.3s;
}
a:hover{
    color: #020015;
}
.input-group{
    width: 100%;
}
.input-group label{
    color: #020015;
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 5px 0;
    width: 100%;
}
.emails{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}



.link2{
    margin: 50px 0 0 0;
}
/* Estilo para o botão de mostrar/ocultar senha */
.password-toggle {
    position: absolute;
    right: 15px;
    top: 57%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #000;
    font-size: 18px;
}

.password-toggle:hover {
    color: #585858;
}

.position-relative {
    position: relative;
    width: 100%;
}

/*CSS TOAST*/
/*div:where(.swal2-container) div:where(.swal2-popup){
    font-size: 13px !important;
}
.swal2-popup.swal2-toast .swal2-icon{
    width: 10px !important;
}*/
@media (min-width: 1024px){
    .container_right{
        display: flex;
        flex-direction: column;
        width: 50%;
        height: 100vh;
        padding: 50px;
        background-image: url("../img/bg-login.jpg");
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        overflow: hidden;
    }
    .container_right img{
        max-width: 100%;
        width: auto;
        max-height: calc(100vh - 200px);
        object-fit: contain;
        position: relative;
        display: block;
        margin-top: 20px;
    }
    .container_right h1{
        width: 100%;
        max-width: 600px;
        font-size: calc(24px + 1vw);
        line-height: 1.3;
        font-weight: bold;
        z-index: 10;
    }
}