.form-header {
    background-color: rgba(0, 92, 185, 0.95);
    padding: 0 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
}

.form-header .header-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.form-header .header-home-btn {
    display: flex;
    align-items: center;
    background: #fff;
    color: #005cb9;
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    text-decoration: none;
}

.form-header .header-home-btn i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .form-header .header-title {
        font-size: 1.2rem;
    }
}
