/* -----------------------------
   11) Forms
------------------------------ */
.form-grid {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

@media (min-width:768px) {
    .form-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 900;
    color: var(--text-muted);
}

.input,
select {
    width: 100%;
    padding: 12px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
    outline: none;
    font-size: 14px;
}

.input:focus,
select:focus {
    box-shadow: var(--focus);
    border-color: rgba(19, 93, 80, .55);
}

.helper {
    margin-top: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.skeleton {
    height: 40px;
    border-radius: var(--radius);
    background: #e5e7eb;
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: .5
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: .5
    }
}

.alert {
    border-radius: var(--radius);
    padding: 14px 16px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 14px;
}

.alert.error {
    border-color: #fecaca;
    background: #fef2f2;
}





.tryfree-form {
    margin-top: 14px;
}

label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    color: var(--text-muted);
    margin: 10px 0 6px;
}

input,
select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 9999px !important;
    padding: 12px 18px;
    background: #fff;
}

.form-grid {
    display: grid;
    gap: 12px;
}

@media (min-width:640px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.req {
    color: #c2410c;
    font-weight: 900;
}

.password-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.password-row input {
    flex: 1;
}

.btn.full {
    width: 100%;
    justify-content: center;
}

