
/* Formulários Modernos */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row.align-center {
    align-items: center;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 0;
}

.modern-form input, 
.modern-form textarea, 
.modern-form select {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.modern-form input:focus, 
.modern-form textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
    outline: none;
}

/* Custom File Upload */
input[type="file"] {
    display: none;
}

.custom-file-upload {
    display: inline-block;
    padding: 12px 20px;
    cursor: pointer;
    background: #fff;
    border: 2px dashed #bdc3c7;
    border-radius: 10px;
    color: #7f8c8d;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-file-upload:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(230, 126, 34, 0.05);
}

.file-name-display {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 5px;
    display: block;
    text-align: center;
}

/* Botão Gradiente */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-primary-gradient:active {
    transform: translateY(0);
}
