*{
    margin: 0;
    padding: 0;
}
body{
    font-family: "Inter", sans-serif;
    background-color: #252525;
    color: #ffffff;
}
h1{
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
}
h3{
    font-size: 1em;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0;
    margin-bottom: 40px;
}
.step {
    display: none;
}
.step.active {
    display: block;
}
.maincontainer{
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    margin: 8% 25% 0 25%;
}
@media only screen and (max-width: 480px) {
    .maincontainer{
        justify-content: center;
        align-items: center;
        height: 100%;
        text-align: center;
        margin: 8% 10% 0 10%;
    }
  }
.container{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.inputcontainer{
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 64px;
}
.inputsection{
    gap: 4px;
    display: flex;
    flex-direction: column;
}
.btncontainer{
    display: flex;
    flex-direction: column;
    margin: 5% 10%;
    gap: 20px;
}
input,select{
    width: 100%;
    background-color: transparent;
    border: 1.5px solid #797979;
    border-radius: 6px;
    padding: 10px 16px;
    box-sizing: border-box;
    color: #ffffff;
}
.nextbtn{
    background-color: #A37F4B;
    border: none;
    cursor: pointer;
    color: white;
    padding: 10px 16px;
    font-weight: 700;
    border-radius: 6px;
}
.newbtn{
    text-decoration: none;
    border: 1.5px solid #A37F4B;
    color: #A37F4B;
    padding: 10px 16px;
    font-size: 12px;
    border-radius: 6px;
}
.backbtn{
    color: #A37F4B;
    border: 1.5px solid #A37F4B;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    background-color: transparent;
}
.smalltext{
    font-size: 12px;
    font-style: italic;
}
.familytitle{
    display: flex;
    justify-content: center;
}
.inputsection1{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.suggestions {
    max-height: 150px;
    overflow-y: auto;
}
.suggestions div {
    padding: 8px;
    cursor: pointer;
}
.suggestions div:hover {
    background-color: #252525;
}
option{
    background-color: #252525;
}
.confirminput{
    border: none;
}
.confirmp{
    margin: 10px 16px;
}