body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    color: #1c1e21;
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    color: #606770;
    font-size: 16px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box; /* Garante que padding não afete a largura total */
}

button {
    width: 100%;
    padding: 12px;
    background-color: #1877f2;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #166fe5;
}

.error {
    color: #fa383e;
    font-size: 14px;
    margin-top: 10px;
    height: 20px; /* Garante espaço para a mensagem sem empurrar o layout */
}

/* ESTILO ADICIONADO AQUI */
.back-to-home {
    text-align: left;
    margin-bottom: 20px;
}

.back-to-home a {
    color: #606770;
    text-decoration: none;
    font-size: 14px;
}

.back-to-home a:hover {
    text-decoration: underline;
}