body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #ffe6f0, #ffe6fa);
    text-align: center;
    color: #b30059;
    margin: 0;
    padding: 0;
}

.form-container, .painel {
    background: #fff0f5;
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px pink;
}

input, textarea, button {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 10px;
    border: 1px solid #d63384;
}

button {
    background-color: #ff66a3;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #ff3385;
}

.calendario {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.dia {
    width: 40px;
    height: 40px;
    margin: 4px;
    line-height: 40px;
    border-radius: 50%;
    background: #ffe6ee;
    border: 1px solid #ff99cc;
}

.marcado {
    background: #ffb3d9;
    font-weight: bold;
}
