.form-box {
    border: 2px dashed #6b46ff; /* Purple dashed border */
    border-radius: 12px;
    background: #6b46ff; /* Solid purple background */
    color: white;
    text-align: center;
    padding: 30px 20px;
    max-width: 600px;
    margin: 20px auto;
}

.form-box h2 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
}

.form-btn {
    display: inline-block;
    background: white;
    color: black;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.form-btn:hover {
    background: #f0f0f0;
}

.form-note {
    margin-top: 20px;
    font-size: 13px;
    color: black;
}
