﻿/* style.css */
body, html {
    height: 100%; /* Garante que o body ocupe toda a altura da viewport */
    margin: 0;
    display: flex; /* Ativa o Flexbox no body */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    font-family: sans-serif;
    min-height: 100%;
    min-height: 100vh;
    /*background-color: #f0f0f0;*/ /* #f0f0f0 Cor de fundo opcional */
    /*background: #9053c7;
    background: -webkit-linear-gradient(-135deg, #c850c0, #4158d0);
    background: -o-linear-gradient(-135deg, #c850c0, #4158d0);
    background: -moz-linear-gradient(-135deg, #c850c0, #4158d0);
    background: linear-gradient(-135deg, #c850c0, #4158d0);*/
    /*background: #91D8F7;
    background: -webkit-linear-gradient(90deg,rgba(145, 216, 247, 1) 0%, rgba(182, 224, 242, 1) 50%, rgba(213, 234, 245, 1) 100%);
    background: -moz-linear-gradient(90deg,rgba(145, 216, 247, 1) 0%, rgba(182, 224, 242, 1) 50%, rgba(213, 234, 245, 1) 100%);
    background: linear-gradient(90deg,rgba(145, 216, 247, 1) 0%, rgba(182, 224, 242, 1) 50%, rgba(213, 234, 245, 1) 100%);
*/
    background: #dcf0fa;
    background: -webkit-linear-gradient(90deg,rgba(220, 240, 250, 1) 0%, rgba(223, 242, 247, 1) 50%, rgba(230, 242, 247, 1) 100%);
    background: -moz-linear-gradient(90deg,rgba(220, 240, 250, 1) 0%, rgba(223, 242, 247, 1) 50%, rgba(230, 242, 247, 1) 100%);
    background: linear-gradient(90deg,rgba(220, 240, 250, 1) 0%, rgba(223, 242, 247, 1) 50%, rgba(230, 242, 247, 1) 100%);
}

.login-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px; /* Largura do formulário */
    /* O login-container não é estritamente necessário com este método no body,
       mas pode ser útil se você quiser um wrapper com outras propriedades.
       Se você usar o login-container, aplique o flex no container: */
}

/* Se preferir usar o .login-container para o Flexbox: */
/*
body, html {
    height: 100%;
    margin: 0;
    background-color: #f0f0f0;
    font-family: sans-serif;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Para que o container ocupe toda a altura */
}

.login-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}

*/
/* Estilos adicionais para o formulário (opcional) */
.login-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        color: #555;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box; /* Importante para que o padding não aumente a largura total */
    }

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.cardContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    border-radius: 8px;
    background-color: #f1f5f9;
    border: none;
    padding: 30px 10px 30px 10px;
    margin-bottom: 60px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.cardContainer > .cardArea {
    flex: none;
    width: 20em;
}

header {
    min-height: 50px;
    background: lightcyan;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

