@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');

.dya-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fffaf6;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'Petit Formal Script', cursive;
    text-align: center;
}
.form-step {
    display: none;
}
.dya-form-container p {
    font-size: 20px;
    margin-bottom: 20px;
}
.step-button, .step-next, button[type="submit"] {
    background: #f08080;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
}
input[type="text"], textarea {
    width: 80%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-bottom: 15px;
}
