* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans', sans-serif;
    background: linear-gradient(135deg, #c2c2c2 20%, #9fadf3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}
h2{
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #1b007a;
}
#login-wrapper{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.loginContainer, .registerContainer {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    width: 400px;
}

#painel{
    display: flex;
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    
}

#painel img{
    max-width: 20%;
}


#nino {
    height: 600px;
    margin: 30px;
    display: block;
    padding: 10px;
}

.loginContainer img, .registerContainer img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}


/* Inputs */
input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    padding: 15px 20px;
    margin: 10px 0;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

input[type="text"]:focus, input[type="password"]:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

#tabelaMes {
    width: 100%;
    padding: 10px;
    border-collapse: collapse;
}
#tabelaMes table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 15px 5px; /* Espaço vertical entre linhas, ajuste como preferir */
}

/* Botões */
button {
    background: linear-gradient(135deg, #7c93fa 0%, #202174 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 5px;
    min-width: 120px;
}
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.link {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}
.link:hover {
    color: #0012b6;
    text-decoration: underline;
}

/* Mensagens de notificação */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(135deg, #56ab2f 0%, #045c3b 100%);
}

.notification.error {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}

.notification.info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Responsividade */
@media (max-width: 768px) {
    #login-wrapper, #painel {
        padding: 20px;
        margin: 10px;
    }
    
    button {
        width: 100%;
        margin: 5px 0;
    }
    
    #tabelaMes {
        overflow-x: auto;
    }
    
    #tabelaMes table {
        min-width: 600px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utilitários */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }
.visible { display: block; }
