body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: #ffffff;
display: flex;
flex-direction:column;
justify-content: center;
align-items: center;
height: 100vh;
}


.container {
background: #ffffff;
width: 380px;
padding: 40px;
border-radius: 18px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
text-align: center;
}


.logo img {
width: 120px;
margin-bottom: 20px;
}


h2 {
margin-bottom: 25px;
color: #1abc9c; /* Verde Tiffany */
}


input[type="text"],
input[type="password"] {
width: 100%;
padding: 12px;
margin: 10px 0;
border: 2px solid #1abc9c;
border-radius: 8px;
outline: none;
}


input:focus {
border-color: #17a589;
}


button {
width: 100%;
padding: 12px;
background: #1abc9c;
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
margin-top: 10px;
}


button:hover {
background: #17a589;
}


.forgot {
margin-top: 12px;
}


.forgot a {
color: #1abc9c;
text-decoration: none;
font-size: 14px;
}


.forgot a:hover {
text-decoration: underline;
}
.fail {
    background-color: #FFBFBF;
    color: #FF2C2C;
    border-left: 6px solid #FF2C2C;
    padding: 14px 18px;
    margin: 15px 0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.4s ease-in-out;
}

/* Ícone opcional antes do texto */
.fail::before {
    content: "❌ ";
    font-weight: bold;
    margin-right: 6px;
}
.failpass {
    background-color: #FFBFBF;
    color: #FF2C2C;
    border-left: 6px solid #FF2C2C;
    padding: 14px 18px;
    margin: 15px 0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.4s ease-in-out;
}

/* Ícone opcional antes do texto */
.failpass::before {
    content: "❌ ";
    font-weight: bold;
    margin-right: 6px;
}