body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    flex-direction: column;
    background-image: url('../assets/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}

h2 {
    color: white;
}

.login-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    color: #333;
    border-color: #E43A12;
    box-shadow: 3px 3px 0px #FEE7D6;
    width: 300px;

}

form {
    height: 100vh; /* Tela toda */
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
}

button {
    text-decoration: none;
    color: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    border-color: #2FC8EB;
    box-shadow: 3px 3px 0px #77C6EB;
    width: 342px;
    background: #2135A6;
    text-align: center;

}

label{
    color: white;
    align-items: flex-start;
    
}

#msgError {
    text-align: center;
    color: #ff0000;
    background-color: #ffbbbb;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

#msgSucess {
    text-align: center;
    color: #00bb00;
    background-color: #bbffbe;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

p2{
    color:white
}

strong{
    color:#77C6EB;
}

a{
    text-decoration: none;
}