/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #eef5f9;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

header {
    background: linear-gradient(to right, #1b9ad4, #1b8242);
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
}

header h1 {
    font-size: 40px;
}

nav {
    background: #1a4f6c;
    color: #fff;
    padding: 10px;
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

.form-section {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-top: 20px;
}

.form-section h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #744ecd;
}

.dropdown-section h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #218e75;
    text-transform: uppercase;
}

.dropdown-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

select {
    width: 100%;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #555;
}

form input, form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

form textarea {
    resize: none;
    height: 70px;
}

.input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

form button {
    background: #007acc;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background 0.3s;
}

form button:hover {
    background: #7550d4;
}
footer {
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #0f5553; /* Example background color */
    color: #ffffff; /* Example text color */
    text-align: center; /* Example text alignment */
    padding: 10px 0; /* Example padding */
  }


.radio-label {
    display: flex;
    align-items: center; /* Aligns items in the center */
    gap: 8px; /* Adds space between the radio button and text */
}

.radio-label span {
    font-size: 20px; /* Adjust size as needed */
    font-weight: bold; /* Makes text bold */
}


























