/* ==========================================
   FORM
========================================== */

.conideas-form {
    display: grid;
    gap: 20px;
}

/* ==========================================
   GROUP
========================================== */

.conideas-form-group {
    display: grid;
    gap: 8px;
}

/* ==========================================
   LABEL
========================================== */

.conideas-form-label {
    font-weight: 600;
}

/* ==========================================
   INPUTS
========================================== */

.conideas-form input,
.conideas-form textarea,
.conideas-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* ==========================================
   BUTTON
========================================== */

.conideas-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

/* ==========================================
   PRIMARY
========================================== */

.conideas-button-primary {
    background: #111;
    color: #fff;
}