/* Modern form header styling */

.form-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, var(--form-primary-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding: 0;
    padding-top: 30px;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-underline {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #695c5bcc, transparent);
    border-radius: 2px;
    margin-top: 12px;
    opacity: 0.8;
}

.form-main-title {
    margin: 0;
    padding: 0;
    font-size: 2.2rem;
    font-weight: 700;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    /* color: var(--form-primary-color); */
    color: #6b7280;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .form-main-title {
        font-size: 1.8rem;
    }
    .header-underline {
        height: 3px;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .form-main-title {
        font-size: 1.5rem;
    }
    .form-header {
        margin-bottom: 1.5rem;
    }
}