body {
    font-family: Arial, sans-serif;
    background-image: url('/static/image.jpeg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 350px;  /* Limita a largura máxima da caixa de login */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);  /* Adiciona uma sombra leve */
}

.input-group {
    margin: 15px 0;
}

input[type="text"], input[type="password"] {
    width: 100%;  /* Certifica-se de que o campo se ajuste à caixa */
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;  /* Garante que o padding seja incluído no tamanho total do elemento */
}

button {
    padding: 10px;
    width: 100%;
    border: none;
    background-color: #5cb85c;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #4cae4c;
}
