/* Estilos CSS básicos */
        
body {
    font-family: "Poppins", serif;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    margin: 80px;
}

main {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.titulo_centralizado{
    text-align: center;
    justify-content: center;
    max-width: 600px;
    margin-bottom: 20px;
}

.caixa{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.03), 6px 8px 12px 6px rgba(0, 0, 0, 0.08);
    padding: 20px 20px 5px 20px;
    width: 100%;
    max-width: 550px;
    border-radius: 0.75rem;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

input[type="email"] {
    width: 100%;
    border: 1px solid #6C727F;
    background-color: white;
    border-radius: 0.75rem;
    padding: 15px 0px;
    margin-bottom: 15px;
}

button {
    width: 100%;
    background-color: #284BCE;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;

    border-radius: 0.75rem;
    padding: 15px 0px;
}

h1{
    font-weight: 600;
    font-style: normal;
    font-size: 48px;
    color: black;
}

h2{
    font-weight: 400;
    font-style: normal;
    font-size: 20px; 
    color: #394150;
}

p{
    font-weight: 400;
    font-style: normal;
    font-size: 14px; 
    color: #6C727F;
    text-align: center;
}


#email::placeholder{
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    color: #6C727F;
    text-align: center;
}