.astro-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px #ccc;
    font-family: Arial, sans-serif;
}

.astro-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.astro-form label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.astro-form input, .astro-form select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.astro-form button {
    background-color: #0073aa;
    color: white;
    padding: 12px;
    border: none;
    width: 100%;
    cursor: pointer;
}

.astro-form button:hover {
    background-color: #005177;
}
