@import url('https://fonts.googleapis.com/css2?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');

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

.background {
    position:absolute;
    display:block;
    top: 0;
    left: 0;
    z-index: 0;
}

main{
    background-color: #f5f6f7;
    background-size: cover;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

header{
    background-color: transparent;
    height: fit-content;
    position: absolute;
    z-index: 10;
}

.logos{
    padding-top: 35px;
    width: 100%;
    flex-flow: row wrap;
    display: flex;
    align-items: center;
}

.logos .idt {
    width: 180px;
}

.logoZeentech{
    margin-left: auto;
    position: absolute;
    /* right: 20px; */
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
}

.form-container {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
    box-sizing: border-box;
    animation: slideIn 0.6s ease-in-out;
    max-height: 530px;
}

h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    animation: fadeIn 0.6s ease-in-out;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-in-out;
}

/* Estilo dos Inputs */
.input-group {
    margin-bottom: 25px;
    text-align: left;
    animation: fadeIn 1s ease-in-out;
}

.input-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #f4f4f4;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #9A1C1F;
    background-color: #ffffff;
    outline: none;
}

/* Botão */
button {
    padding: 14px;
    background-color: #9A1C1F;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: #b30000;
}

/* Link de Voltar ao Login */
.back-to-login {
    margin-top: 30px;
    font-size: 14px;
    color: #777;
}

.back-to-login a {
    color: #b73535;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-login a:hover {
    text-decoration: underline;
}

/* Animações */
@keyframes slideIn {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* Responsividade */
@media (max-width: 600px) {
    .form-container {
        padding: 30px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }

    .input-group input {
        font-size: 14px;
    }
}


@media (max-width: 480px) {
    .logo{
        width: 80px; 
        height: auto;
    }

    .logoZeentech {
        width: 150px;
    }
}
