body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}
.form-container {
    position: relative; /* Necessary for proper layout */
    background: #ffffff;
    color: #333;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    display: flex; /* Use flexbox for layout */
    flex-direction: column;
    align-items: center; /* Center contents */
}

h1 {
    text-align: center;
    color: #0072ff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

select, input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #0072ff;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

select:focus, input[type="text"]:focus {
    border-color: #00c6ff;
}

button {
    width: 100%;
    padding: 12px;
    background: #0072ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

button:hover {
    background: #005bb5;
}

button:active {
    background: #003f8c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-container {
        padding: 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    select, input[type="text"], button {
        font-size: 0.9rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.2rem;
    }

    select, input[type="text"], button {
        font-size: 0.8rem;
        padding: 6px;
    }
}

.success-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

h1 {
    color: #28a745;
}

p {
    font-size: 1.2rem;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

/* Style for all input fields including contact number */
input[type="text"], input[type="tel"], select {
    width: 100%;
    padding: 10px;
    border: 2px solid #0072ff;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

input[type="text"]:focus, input[type="tel"]:focus, select:focus {
    border-color: #00c6ff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

/* Button styles */
button {
    width: 100%;
    padding: 12px;
    background: #0072ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

button:hover {
    background: #005bb5;
}

button:active {
    background: #003f8c;
}

/* Small text for hints or validation messages */
small {
    display: block;
    margin-top: 0.25rem;
    color: #6c757d;
}
.radio-group {
    display: flex;
    gap: 20px; /* Space between radio buttons */
}

.radio-group label {
    display: flex;
    align-items: center; /* Center-align label text with the radio button */
    font-size: 1rem; /* Consistent font size */
}

.radio-group input[type="radio"] {
    margin-right: 8px; /* Space between radio button and label text */
}
input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #0072ff;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

input[type="date"]:focus {
    border-color: #00c6ff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.stickers {
    display: flex;
    justify-content: space-between; /* Space out stickers */
    width: 100%; /* Make stickers take full width of the form */
    position: relative; /* Allow relative positioning for internal items */
    margin-bottom: 25px; /* Space from the form elements */
}

.sticker {
    width: 15%; /* Responsive size; adjust as needed */
    height: auto; /* Maintain aspect ratio */
    transition: width 0.3s ease; /* Smooth transition for width change */
}

/* Media Queries for Responsive Adjustments */
@media (max-width: 768px) {
    .sticker {
        width: 15%; /* Reduce size for medium screens */
    }
}

@media (max-width: 480px) {
    .sticker {
        width: 10%; /* Further reduce size for small screens */
    }
}