/* Formularios e Inputs */
.apc-input {
    width: 100%;
    padding: 8px;
    margin: 0;
    display: block;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.4;
}

textarea.apc-input {
    min-height: 80px;
    resize: vertical;
}

.apc-form-group {
    margin-bottom: 15px;
}

.apc-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

/* Spinner */
.apcc-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: var(--primary-color);
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}