/* General Form Styling */
.registration-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ff7f50; /* Orange border for the form */
    max-width: 900px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.registration-form h2 {
    text-align: center;
    color: #ff7f50; /* Orange color */
    margin-bottom: 20px;
}

/* Form Group for Input Fields */
.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.input-field {
    flex: 1 1 calc(50% - 20px); /* Half width for each field */
    display: flex;
    flex-direction: column;
}

.input-field label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.input-field input,
.input-field select,
.input-field textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.input-field textarea {
    height: 100px;
}

/* Button Styling */
button {
    background-color: #ff7f50; /* Button Color */
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

button:hover {
    background-color: #e06342; /* Darker shade on hover */
}

/* Guest Info Section */
 
.guest-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 10px;
    margin-bottom: 10px;
}

.guest-row input,
.guest-row select {
    padding: 8px;
}

.remove-guest {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 0 14px;
    cursor: pointer;
}

.btn-add {
    background: #198754;
    color: #fff;
    border: none;
    padding: 6px 14px;
    cursor: pointer;
    margin-top: 10px;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .input-field {
        flex: 1 1 100%;
    }
}
