*{
    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;
}
.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%;
    }
  }
.inputcontainer{
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 64px;
}
.inputsection{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
input,select{
    width: 100%;
    box-sizing: border-box;
    background-color: transparent;
    border: 1.5px solid #797979;
    padding: 10px 16px;
    border-radius: 6px;
    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;
    background-color: transparent;
}
.btncontainer{
    display: flex;
    flex-direction: column;
    margin: 5% 10%;
    gap: 20px;
}
.step {
    display: none;
}
.step.active {
    display: block;
}
.confirmlabel{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}
.confirmdata{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-left: 16px;
}
option{
    background-color: #252525;
}