.box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

body{
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title{
    color:  #cc3300    ;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 50%;
}
.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.login-container {
   /* background: linear-gradient(to right, #76d68f , #4eca6f    );*/
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
    color:#4CAF50;
}

.cadastro-container {
    display: none;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    width: 500px;
    text-align: center;
    z-index: 1;
    color:#cc3300  ;
    position: absolute;

}


.login-container h2 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
}

.login-input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: none;
    border-radius: 8px;
    background-color: #f8f8f8;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
}

.login-input:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(50, 168, 82, 0.5);
}

.login-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #3cb371, #2e8b57);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.mensagemErro {
    color: red    ;
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .login-container {
        width: 90%;
    }
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
