/* Estilos gerais */
html {
    background-color: #56baed; 
}

body {
    font-family: "Poppins", sans-serif;
    
    height: 100vh;
    display: flex; /* Utiliza flexbox para centralizar */
    justify-content: center;
    align-items: center;
}

#textContent{
    background-color: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    border-radius: 10px; 
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
    
}
link{
    align-items: center;
}
/* Estilos para o wrapper */
.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px; 
}

/* Estilos para o container do formulário */
#formContent {
    background-color: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    border-radius: 10px; 
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

/* Estilos para o rodapé do formulário */
#formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

/* Estilos para os campos de entrada */
select {
    font-size: 0.9rem;
    padding: 20px 5px;
    margin-bottom: 15px;
    border: 1px solid #3e1da3;
    border-radius: 4px;
}
input[type="text"],
input[type="password"] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    margin: 5px;
    width: 85%;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

input[type="text"],
input[type="email"] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    margin: 5px;
    width: 85%;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}
input[type="text"],
input[type="tel"] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    margin: 5px;
    width: 85%;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}


/* Estilos para o botão */
input[type="submit"] {
    background-color: #56baed;
    border: none;
    color: white;
    padding: 15px 80px;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background-color: #39ace7;
}

/* Estilos para o link "Esqueceu a senha?" */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover:after {
    width: 100%;
}

/* Animações */
.fadeInDown {
    animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn.first {
    animation-delay: 0.4s;
}

.fadeIn.second {
    animation-delay: 0.6s;
}

.fadeIn.third {
    animation-delay: 0.8s;
}

.fadeIn.fourth {
    animation-delay: 1s;
}

/* Outros */
*:focus {
    outline: none;
}

@media screen and (min-width: 800px) {
    .container {
      margin: 1em 2em;
    }
  }
  .header-mobile {
    padding: 10px;
    background-color: #0d6efd;
    color: white;
    text-align: center;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .header-mobile {
        font-size: 1rem;
        padding: 5px;
    }
}
