@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

body {
    background-color: #f0f2f5;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.box-login {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-logo {
    width: 80px;
    height: 90px;
    margin-bottom: 20px;
}

.box-login h2 {
    margin-bottom: 25px;
    color: #333;
    font-size: 1.5em;
}

.form-group-login {
    margin-bottom: 20px;
    text-align: left;
}

.form-group-login label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.form-group-login input[type="text"],
.form-group-login input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group-login input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form-group-login input[type="submit"]:hover {
    background-color: #333;
}

.lembrar-me {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.lembrar-me label {
    margin-left: 8px;
    color: #555;
    font-size: 14px;
}

.erro-box {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}