
/**
 * Estilos para a área pública do Suporte SIGI
 */

/* Formulários de login e registro */
.suporte-sigi-login-form,
.suporte-sigi-register-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
}

.form-group button {
    width: 100%;
    background: #0073aa;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
}

.form-group button:hover {
    background: #005a87;
}

.form-links {
    text-align: center;
    margin-top: 15px;
}

.form-links a {
    color: #0073aa;
    text-decoration: none;
}

.form-links a:hover {
    text-decoration: underline;
}

/* Dashboard */
.suporte-sigi-dashboard {
    max-width: 800px;
    margin: 20px 0;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.dashboard-card {
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.dashboard-card h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.dashboard-stat {
    font-size: 2em;
    font-weight: bold;
    color: #0073aa;
    margin: 0;
}

.dashboard-actions {
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.dashboard-actions h4 {
    margin: 0 0 15px 0;
}

.dashboard-actions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-actions li {
    margin-bottom: 10px;
}

.dashboard-actions a {
    text-decoration: none;
    color: #0073aa;
    font-size: 16px;
}

.dashboard-actions a:hover {
    text-decoration: underline;
}

/* Notificações */
.notice {
    padding: 10px;
    margin: 10px 0;
    border-radius: 3px;
}

.notice-success {
    background: #ecf7ed;
    border-left: 4px solid #46b450;
    color: #155724;
}

.notice-error {
    background: #f9e2e2;
    border-left: 4px solid #dc3232;
    color: #721c24;
}

/* Responsividade */
@media (max-width: 768px) {
    .suporte-sigi-login-form,
    .suporte-sigi-register-form {
        max-width: 100%;
        margin: 10px;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
}
