<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset bÃ¡sico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.img-logar img {
    max-width: 200px;
    padding-bottom: 30px;
}

/* Corpo da pÃ¡gina */
body {
    font-family: Arial, sans-serif;
    background-color: #01080E;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container principal */
.container {
    background-color: #021017;
    border: 1px solid #cccccc83;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

/* TÃ­tulo */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Input e botÃ£o de login */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #007bff;
    outline: none;
}

button[type="submit"], button[type="button"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover, button[type="button"]:hover {
    background-color: #0056b3;
}

/* Mensagem de erro */
.error-message {
    color: #ff0000;
    margin-bottom: 15px;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        width: 90%;
    }

    h1 {
        font-size: 24px;
    }

    input[type="text"], input[type="password"], button[type="submit"], button[type="button"] {
        font-size: 14px;
        padding: 8px;
    }
}
</pre></body></html>