/* Estilo geral */
body {
    font-family: Arial, sans-serif;
    background-color: #202124;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container para centralizar tudo */
.container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    background-color: #333;
    border-radius: 8px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
    width: 150px; /* Ajuste o tamanho da imagem */
    height: auto;
    margin-bottom: 20px; /* Espaço abaixo da imagem */
}

/* Título de boas-vindas */
h1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px; /* Espaço abaixo do título */
}

/* Estilo dos campos de entrada */
.input-group {
    margin-bottom: 15px;
}

input[type="text"], input[type="password"] {
    width: 80%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background-color: #3c4043;
    color: white;
    margin: 10px 0;
}

/* Estilo do botão */
button {
    width: 80%;
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

button:hover {
    background-color: #0c59b3;
}

/* Estilo do texto */
label {
    font-weight: bold;
    color: #ccc;
}
