*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.banner {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),url(/img/3.png);
    background-size: cover;
    background-position: center;
}

.navbar {
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 170px;
    cursor: pointer;
    color: #ff1e00;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.navbar ul li::after {
    content: '';
    height: 3px;
    width: 0%;
    background: #ff1e00;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.navbar ul li:hover::after {
    width: 100%;
}

span {
    background: #009688;
    height: 100%;
    width: 0%;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}

/* END */

/* START */

.container {
    width: 460px;
    background-color: #202020;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 270px auto;
}

h2 {
    margin: 15px;
    text-align: center;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
    color: #fff;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

input[type="email"] {
    width: calc(100% - 20px); /* Adjust width as needed */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="text"] {
    width: calc(100% - 20px); /* Adjust width as needed */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

input[type="checkbox"] {
    margin-right: 10px;
}

#confirmButton {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#confirmButton:hover {
    background-color: #0056b3;
}

.error-message {
    color: red;
}

/*
footer Start
*/

footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.legal-links ul li {
    display: inline;
    margin-right: 35px;
}

.legal-links ul li:first-child {
    margin-left: 0;
}

.legal-links ul li a {
    color: #fff;
    text-decoration: none;
}

.legal-links ul li a:hover {
    text-decoration: underline;
}

/*
footer End
*/