/**
 * Form Builder View - Estilos CSS
 * Estilos específicos para view.blade.php do form builder
 */

/* Importação de fonte e ícones - movida para head do documento */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.form-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.form-header {
    /* Background dinâmico será aplicado via inline style no blade */
    height: 120px; /* Default height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 15px 15px 0 0;
}

.form-header.with-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.input-group-text {
    background-color: #f8f9fa;
}

.form-title {
    font-weight: 600;
    font-size: 2.5rem;
    color: black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 1;
    margin: 0;
}

.form-header .form-title {
    margin-bottom: 0;
}

.bordered-group {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: 1rem;
}

.input-group .form-control,
.input-group .input-group-text {
    border: 2px solid #ced4da;
}

.input-group .form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .25);
}

.form-label {
    color: black;
}