/* Importa a fonte Lato do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: #212121;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #FFFFFF;
    width: 300px;
}

.login-container h2 {
    margin-bottom: 30px;
    color: #FCC00D;
    font-weight: 700;
}

.login-container form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="password"] {
    background-color: #333333;
    color: #FFFFFF;
    border: 1px solid #FCC00D;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 15px;
    font-size: 16px;
}

button {
    background-color: #FCC00D;
    color: #333333;
    border: none;
    border-radius: 5px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, button:focus {
    background-color: #e6b800;
    outline: none;
}
