@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: 'Heebo', sans-serif;
}

a {
    text-decoration: none;
}

:root {
    --zt_claro: #D51E24;
    --zt_escuro: #9a1c1f;
}
/*============================================================================================================*/
body {
    background-color: black;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-y: hidden;
    position: relative; /* Adicionada para permitir o pseudo-elemento */
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../imgs/background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.6; /* 70% de transparência */
    z-index: -1; /* Coloca o pseudo-elemento atrás do conteúdo do body */
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100px;
    padding: 5px 20px 5px 20px;
}

header a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

header img {
    height: 100%;
}

.logo_zeentech {
    height: 40%;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: transparent;
    backdrop-filter: blur(5px);

    height: 50%;
    width: 50%;
}

h1 {
    color: #641113;
}

main > div {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.850);
    backdrop-filter: blur(5px);
    width: 35%;
    height: 100%;

    padding: 20px 0px 30px 0px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

main > div img {
    height: 10%;
}

main > div h2 {
    font-size: large;
    font-weight: 10;
    color: var(--zt_escuro);
}

main form {
    background-color: rgba(255, 255, 255, 0.700);
    backdrop-filter: blur(5px);
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;

    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}

@media (min-width: 1000px) {
.div__input {
    background-color: rgba(255, 255, 255, 0.456);
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 45%;
    height: 12%;
    padding: 3px;
    border-radius: 10px;
}

.div__input input {
    height: 100%;
    width: 100%;
    background-color: transparent;
    border: none;
}

.input__celular {
    display:none;
}
}

label {
    height: 100%;
}

label img {
    height: 90%;
    margin-right: 5px;
    border-right: 2px solid black;
}

@media (max-width: 1000px) {
    .div__input {
        display: none;
    }

    .input__celular {
        background-color: rgba(255, 255, 255, 0.456);
        display: block;
        width: 45%;
        height: 12%;
        padding: 3px 5px 3px 5px;
        border: none;
        border-radius: 10px;
    }
}

.botoes {
    background-color: var(--zt_escuro);

    border: 1px solid var(--zt_escuro);

    color: white;
    font-size: 100%;

    padding: 5px;

    border-radius: 10PX;

    width:  40%;
    height: 18%;
}

div .botoes {
    width: 70%;
}

.botoes a {
    width: 100%;
    height: 100%;
    color: white;
}

.botoes:hover {
    transition-duration: 0.5s;
    background-color: #5e1112;
    cursor: pointer;
}

.botoes:not(:hover) {
    transition-duration: 0.5s;
}

.esqueci_senha {
    height: 15px;
    font-size: x-small;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: black;
    text-decoration: underline;
    position: absolute;
    bottom: 28%;
    left: 30%;
}

.esqueci_senha img {
    height: 90%;
}

@media (max-width: 1000px) {
    main {
        flex-direction: column;
    
        height: 70%;
        width: 40%;
    }
    
    main > div {
        width: 100%;
        height: 35%;
    
        padding: 10px 0px 10px 0px;
    
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 0px;
    }
    
    main form {
        width: 100%;
        height: 65%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
    
        border-bottom-right-radius: 20px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 20px;
    }
}

@media (max-width: 760px) {
    main{
        width: 60%;
    }
}

@media (max-width: 680px) {

    header {
        display: none;
    }
}

@media (max-width: 480px) {

    main {
        width: 95%;
    }
}