form {
    max-width: 800px;
    margin: 0 auto;
}
/* label {
    font-weight: bold;
} */
.form-group {
    margin-bottom: 15px;
}
.form-group input,
.form-group select {
    width: 97%;
    padding: 8px;
    margin-top: 5px;
}
.form-group textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}
.form-group button {
    padding: 10px 15px;
    background-color:#bfb62c;
    color: white;
    border: none;
    cursor: pointer;
    
}
.form-group button:hover {
    background-color:rgb(36, 165, 165);
}
.form-section {
    border: 1px solid #bfb62c;
    color:rgb(36, 165, 165);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.form-section h3 {
    margin-top: 0;
}
.registration-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-header {
    font-weight: bold;
    margin-bottom: 20px;
}
.form-section1{
/* border: 1px solid #bfb62c; */
color:rgb(36, 165, 165);
padding: 15px;
margin-bottom: 20px;
border-radius: 5px;
}
.form-label{
    font-weight: bold;
}
.styled-heading {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    color: rgb(36, 165, 165);
    position: relative;
    font-size: 24px;
}

.styled-heading::before,
.styled-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 2px;
    background-color: rgb(36, 165, 165);
}

.styled-heading::before {
    left: 0;
}

.styled-heading::after {
    right: 0;
}