/**
 * 2023 Trigenius
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 *
 * @author    Trigenius <rafael.reis@trigenius.pt>
 * @copyright 2023 Trigenius
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

    .denuncia-form-container {
        margin: 30px 0;
        padding: 20px;
        background-color: #f8f9fa;
        border-radius: 5px;
    }
    
    #denuncia-form-button {
        display: block;
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 16px;
    }
    
    #denuncia-form-wrapper {
        margin-top: 20px;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    
    #denuncia-form .form-group {
        margin-bottom: 15px;
    }
    
    #denuncia-form label {
        font-weight: bold;
        text-align: left;
    }
    
    #denuncia-form-message {
        margin-top: 15px;
        padding: 10px 15px;
    }
    
    .denuncia-form-container .form-check-input {
        margin-left: 0rem;
    } 

    .denuncia-form-container {
        margin: 0 auto;
        padding: 1.5rem;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
        margin-bottom: 2.5rem;
    }

    /* Espaçamento entre grupos */
    .form-group {
        margin-bottom: 1.8rem;
    }

    /* Arredondar inputs, selects, textarea e file */
    .form-control,
    input[type="file"] {
        border-radius: 0.5rem !important;
        padding: 0.5rem 0.75rem;
        border: 1px solid #ced4da;
        transition: border-color 0.3s ease;
    }
    .form-control:focus,
    input[type="file"]:focus {
        border-color: #495057;
        box-shadow: 0 0 5px rgba(73, 80, 87, 0.25);
        outline: none;
    }

    /* Labels em negrito e com espaçamento */
    label {
        font-weight: 600;
        margin-bottom: 0.4rem;
        display: block;
    }

    /* Checkbox e radio - alinhamento e espaço */
    .form-check {
        margin-bottom: 0.7rem;
    }
    .form-check-input {
        margin-top: 0.25rem;
    }
    .form-check-label {
        margin-left: 0.3rem;
        user-select: none;
    }

    /* Botões */
    #denuncia-form-button,
    .btn {
        border-radius: 0.5rem;
        padding: 0.5rem 1.25rem;
        margin-top: 1.5rem;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }
    #denuncia-form-button {
        width: 100%;
        margin-bottom: 1.5rem;
        border-radius: 30px;
    }

    /* Mensagem */
    #denuncia-form-message {
        margin-top: 1rem;
        border-radius: 0.5rem;
    }

    /* Placeholder menores */
    ::placeholder {
        font-size: 0.9rem;
        color: #6c757d;
        opacity: 1;
    }

    /* Estilo para campo texto extra quando "Outro" é selecionado */
    input[name="relacao_outro"],
    input[name="categoria_outro"] {
        margin-top: 0.5rem;
    }