/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 18px;  /* Tamanho da fonte global */
}

.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.header-logo {
    width: 180px;
    height: auto;
    margin-bottom: 8vh;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 22px;
    outline: none;
    text-align: center;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #007bff;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px; 
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #0056b3;
}

.error-message {
    color: #ff0000;
    font-size: 18px;  
    margin-top: 10px;
}

.success-message {
    color: #008000;
    font-size: 16px;
    margin-top: 10px;
}
