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

body {
    background: linear-gradient(135deg, #14203B, #5CE1E6); /* Gradiente de fundo */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    animation: gradientAnimation 10s ease infinite;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

body h5 {
    color: #0E1624; 
    font-size: 1.8rem;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5); 
    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: rgba(255, 255, 255, 0.8); /* Cor de fundo com transparência */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
    opacity: 0;
    transform: scale(0.9); /* Efeito de zoom */
    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: none;
    border-radius: 5px;
    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);
    }
}

