/**
 * Estilos Públicos do SISTUR
 *
 * @package SISTUR
 */

.sistur-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sistur-login-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sistur-login-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3338;
}

.sistur-form-field {
    margin-bottom: 20px;
}

.sistur-form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3338;
}

.sistur-form-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 16px;
}

.sistur-form-field input:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.sistur-btn-submit {
    width: 100%;
    padding: 12px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.sistur-btn-submit:hover {
    background: #135e96;
}

.sistur-message {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.sistur-message-success {
    background: #edfaef;
    color: #00a32a;
    border: 1px solid #00a32a;
}

.sistur-message-error {
    background: #fcf0f1;
    color: #d63638;
    border: 1px solid #d63638;
}

.sistur-painel {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sistur-painel-header {
    border-bottom: 2px solid #f0f0f1;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.sistur-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #dcdcde;
    margin-bottom: 30px;
}

.sistur-tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #646970;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.sistur-tab:hover {
    color: #2271b1;
}

.sistur-tab.active {
    color: #2271b1;
    border-bottom-color: #2271b1;
}

.sistur-tab-content {
    display: none;
}

.sistur-tab-content.active {
    display: block;
}
