/* static/style.css */



.login-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;   /* Organiza os itens na vertical */
    justify-content: center;  /* Centraliza o conteúdo */
    align-items: center;
}

input[type="email"], input[type="password"] {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #FFBD59;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
}


.logocomp {
    width: 200px;    /* Ajuste o tamanho conforme necessário */
    height: auto;   /* Mantém a proporção da imagem */
    margin-bottom: 20px; /* Espaçamento entre a logo e os campos de input */
}

