/* CONFIGURAÇÕES DO PROJETO */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Afacad', sans-serif;
}

body {
    background-color: #ffffff; /* Fundo branco */
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

body h5 {
    color: #333333; /* Texto em cinza escuro */
    font-size: 1.8rem;
    text-align: center;
    opacity: 0;
    animation: fadeInText 1.5s ease forwards;
    animation-delay: 0.5s; /* Delay para entrada do texto */
}

.container {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background-color: #f8f9fa; /* Fundo cinza claro */
    border-radius: 10px;
    border: 1px solid #e0e0e0; /* Borda suave */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra leve */
    opacity: 0;
    transform: scale(0.95); /* Efeito de zoom leve */
    animation: fadeInContainer 1s ease forwards;
    animation-delay: 1s; /* Delay para entrada do container */
}

@keyframes fadeInContainer {
    to {
        opacity: 1;
        transform: scale(1); /* Zoom in */
    }
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

input {
    display: block;
    margin: 10px auto;
    width: calc(100% - 20px);
    padding: 10px;
    font-size: 1.0rem;
    border: 1px solid #cccccc; /* Borda cinza claro */
    border-radius: 5px;
    background-color: #ffffff; /* Fundo branco */
    color: #333333; /* Texto em cinza escuro */
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInInput 0.8s ease forwards;
    animation-delay: 1.2s; /* Delay para entrada dos inputs */
}

@keyframes fadeInInput {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.botao {
    cursor: pointer;
    width: 100%;
    padding: 10px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    background-color: #14203B;
    color: #fff;
    transition: background-color 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInButton 0.8s ease forwards;
    animation-delay: 1.4s; /* Delay para entrada do botão */
}

.botao:hover {
    background-color: #0E1624;
    transform: scale(1.05); /* Efeito de hover */
}

@keyframes fadeInButton {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

img {
    width: 150px;
    margin-right: 5%;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInImg 0.8s ease forwards;
    animation-delay: 1s; /* Delay para entrada da imagem */
}

@keyframes fadeInImg {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
