:root {
    --primary-color: rgb(25, 26, 26);
    --secondary-color: rgb(255, 239, 239);
    --accent-color: rgb(160, 34, 72);
    --light-bg-color: rgb(240, 242, 244);
    --border-color: rgb(211, 216, 222);
    --border-radius: 8px;
    --padding: 16px;
    --margin-top: 30px;
    --margin-bottom: 10px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg-color);
    color: var(--primary-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 965px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    border: solid pink 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--margin-bottom);
}

p {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: var(--margin-bottom);
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    color: blue;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--padding);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: rgb(255, 255, 255);
    box-sizing: border-box;
}

/* Fix select field height */
.form-group select {
    height: 48px; /* Set to the desired height */
    padding-top: var(--padding);
    padding-bottom: var(--padding);
}

/* Fix date and time input fields */
.form-group input[type="date"],
.form-group input[type="time"] {
    height: 48px; /* Set to the desired height */
    padding: var(--padding);
    font-size: 16px; /* Optional: adjust font size to match other inputs */
}

button {
    display: block;
    width: 100%;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    cursor: pointer;
    padding: 15px var(--padding);
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    margin-top: var(--margin-top);
    margin-bottom: var(--margin-bottom);
    text-align: center;
}

@media (max-width: 639px) {
    .container {
        margin: 0 auto; /* Ensure the container is centered */
        padding: 15px;
        max-width: 100%; /* Ensure the container takes full width */
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    .form-group label {
        font-size: 14px;
    }

    button {
        font-size: 18px;
        padding: 12px;
    }
}
