@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap') !important;

.custom-form-container {
    width: 100% !important;
    max-width: 100% !important;
    font-family: 'Outfit', sans-serif !important;
    background: transparent !important;
}

.custom-form-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    margin: 0 0 26px 0 !important;
}

.custom-form-group {
    width: 100% !important;
    margin-bottom: 24px !important;
}

.custom-form-group label {
    display: block !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    margin-bottom: 12px !important;
}

.custom-form-input {
    width: 100% !important;
    background-color: transparent !important;
    color: #000 !important;
    padding: 0 0 10px 0 !important;
    font-size: 20px !important;
    border: none !important;
    border-bottom: 1.4px solid #ccc !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.custom-form-input::placeholder {
    color: #8A8A8A !important;
    opacity: 0.8 !important;
    font-size: 20px !important;
}

.custom-form-input:focus {
    outline: none !important;
    border-bottom: 2px solid #00c4f4 !important;
    box-shadow: none !important;
}

.custom-form-help {
    font-size: 13px !important;
    color: #9AA3AF !important;
    margin: 8px 0 0 0 !important;
    line-height: 1.4 !important;
}

.custom-form-error {
    color: red !important;
    font-size: 13px !important;
    margin-top: 6px !important;
    display: block !important;
}

/* Original gradient always stays same */
.custom-form-submit {
    width: 100% !important;
    background: linear-gradient(
        to right,
        #129dff,
        #00b3ff,
        #00c4f4,
        #00d3e0,
        #37dfc9
    ) !important;

    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.custom-form-submit:hover {
    background: linear-gradient(
        to right,
        #00b3ff,
        #00c4f4,
        #00d3e0,
        #37dfc9,
        #129dff
    ) !important;
}

#form-success-message {
    font-size: 14px !important;
    margin-top: 12px !important;
}

html body .custom-form-container label::before,
html body .custom-form-container label::after,
body .custom-form-container label::before,
body .custom-form-container label::after,
.custom-form-container label::before,
.custom-form-container label::after {
    content: none !important;
}