.smforms-form {
    max-width: 600px;
}

.smforms-form .sm-field-wrapper {
    margin-bottom: 15px;
}

.smforms-form input[type=text],
.smforms-form input[type=number],
.smforms-form select,
.sm-other-input {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
}

/* =========================
FORM CONTAINER
========================= */
.smforms-form {
    max-width: 650px;
    margin: 40px auto;
    padding: 35px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', sans-serif;
}

/* =========================
FIELD WRAPPER
========================= */
.sm-field-wrapper {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
}

/* LABELS */
.sm-field-wrapper>label:first-child {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

/* =========================
INPUT TEXT & NUMBER
========================= */
.smforms-form input[type="text"],
.smforms-form input[type="number"],
.smforms-form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #f9fafc;
    font-size: 14px;
    transition: all 0.3s ease;
}

.smforms-form input[type="text"]:focus,
.smforms-form input[type="number"]:focus,
.smforms-form select:focus {
    border-color: #4f46e5;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    outline: none;
}

/* =========================
SELECT PERSONALIZADO
========================= */
.sm-select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #4f46e5 50%),
        linear-gradient(135deg, #4f46e5 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px),
        calc(100% - 15px) calc(50% - 3px);
    background-size: 5px 5px;
    background-repeat: no-repeat;
}

/* =========================
RADIO BUTTONS
========================= */
.sm-field-wrapper input[type="radio"] {
    accent-color: #4f46e5;
    margin-right: 6px;
}

.sm-field-wrapper label input[type="radio"]+* {
    font-weight: 500;
}

.sm-field-wrapper label {
    margin-bottom: 6px;
    font-size: 14px;
    cursor: pointer;
}

/* =========================
FILE INPUT
========================= */
.smforms-form input[type="file"] {
    padding: 10px;
    border: 1px dashed #bbb;
    border-radius: 10px;
    background: #fafafa;
    cursor: pointer;
    transition: 0.3s;
}

.smforms-form input[type="file"]:hover {
    border-color: #4f46e5;
    background: #f3f4ff;
}

/* =========================
OUTRO INPUT (OTHER)
========================= */
.sm-other-input {
    margin-top: 8px !important;
}

/* =========================
SUBMIT BUTTON
========================= */
.smforms-form button[type="submit"] {
    width: 50%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;

    display: block;
    margin: 20px auto 0 auto;
    /* centraliza */
}

.smforms-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.smforms-form button[type="submit"]:active {
    transform: scale(0.98);
}

.smforms-title {
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 32px;
    padding: 20px 0;

    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.164);

    background: linear-gradient(175deg, #100c49, rgba(27, 177, 247, 0.959));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
RESPONSIVO
========================= */
@media (max-width: 600px) {
    .smforms-form {
        padding: 20px;
    }
}