#formRecortImage {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
}
.btn {
    border: none;
    padding: 12px;
    border-radius: 12px;
    margin-right: 12px;
    cursor: pointer;
}

.iframe-youtube {
    min-width: 200px;
    height: auto;
    max-width: 100%;
    margin: 12px;
}

.img-preview {
    max-width: 300px;
}

.rounded-circle {
    border-radius: 100%;
}


/* Estilos gerais para o input, select e selectize */
.form-group>input, .form-group>select, .selectize-input, .form-control {
    background: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    border: none;
    padding: 20px;
    outline: none;
    font-size: 1.1rem;
}

.form-group>input[type="file"] {
    background: none;
    border: 2px dashed #ccc;
    padding: 2px !important;
    border-radius: 10px;
    font-size: 14px !important;
    cursor: pointer;
    text-align: center;
}

/* Estilo para quando o input/selectize estiver em foco ou ativo */
.form-group>input:hover,
.form-group>input:active,
.form-group>input:focus,
.selectize-input:hover,
.selectize-input:focus {
}

/* Estilo para o dropdown do selectize */
.selectize-dropdown {
    background: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    border: none;
    padding: 10px;
    font-size: 1.1rem;
}

/* Estilo para os itens dentro do dropdown */
.selectize-dropdown .option {
    padding: 10px;
    font-size: 1.1rem;
}

/* Foco nos itens do dropdown */
.selectize-dropdown .option:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

