/* Basic Styling */


/* Container Styling */
.w3-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.form {
    background-color: #ffffff;
    padding: 20px;
    /* border-radius: 8px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: 100%;
}

/* Label and input styling */
label {
    font-size: 16px;
    margin-top: 8px;
    display: block;
}

input[type="tel"], input[type="email"], input[type="text"], textarea, select {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="tel"], input[type="email"], input[type="text"], select {
    background-color: #f9f9f9;
}

textarea {
    resize: vertical;
}
.fullname-container {
     display: flex;
    justify-content: space-between; /* Space out the fields */
    width: 100%;
    margin: 0 auto;
}

.fullname-container .form-group:first-child {
    margin-right: 20px; /* Adds 20px space between the first and second form-group */
}
/* Flexbox for address fields */
.address-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-between; /* Space out fields */
}

.form-group {
    width: 48%; /* Each input takes 48% width (with some space in between) */
    margin-bottom: 16px; /* Add space between the fields */
}

.form-group input {
    width: 100%; /* Ensure inputs inside .form-group take full width */
}

.half-name {
     /*width: 48%; Each input takes 48% width (with some space in between) */
    margin-bottom: 16px; /* Add space between the fields */
}

.half-name input {
    width: 100%; /* Ensure inputs inside .half-width take full width */
}


.half-width {
     /*width: 48%; Each input takes 48% width (with some space in between) */
    margin-bottom: 16px; /* Add space between the fields */
}

.half-width input {
    width: 100%; /* Ensure inputs inside .half-width take full width */
}

/* Button Styling */
button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

