/* Internal form styling */
.beautiful-form {
    max-width: 100%;
    padding: 20px;
    border-radius: 5px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.beautiful-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.beautiful-form input[type="text"],
.beautiful-form input[type="date"],
.beautiful-form input[type="time"],
.beautiful-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%; /* Make input fields full width */
    box-sizing: border-box; /* Include padding and border in the width */
} 

.beautiful-form input[type="number"],
.beautiful-form textarea {
    max-width: 100%;
}

/* Submit button styling */
.submit-button {
    background-color: green;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    /* Position on the right */
    margin-left: auto;
    width: 100%; /* Make submit button full width */
    box-sizing: border-box; /* Include padding and border in the width */
}

/* Adjust layout for smaller screens */
@media screen and (max-width: 768px) {
    .beautiful-form {
        padding: 10px;
    }

    .beautiful-form input[type="text"],
    .beautiful-form input[type="number"],
    .beautiful-form input[type="date"],
    .beautiful-form input[type="time"],
    .beautiful-form select {
        margin-bottom: 5px;
    }
}