main{
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 20px auto;
}

.form-header .header-img img{
    max-width: 100%;
    height: 40px;
}

.form-header .header-title{
    font-size: 30px;
    text-transform: uppercase;
}

.name-group{
    display: flex;
    width: 40%;
    flex-direction: column;
}

.row{
    justify-content: space-around;
}

.form-label{
    display: block;
}

.name-input{
    display: inline-block;
    margin-right: 10px;
}

.names-wrapper{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}

.helper-text{
    font-size: 12px;
    color: #57647e;
}

.name-group .error{
    font-size: 14px;
    color: #57647e;
}

.form-required{
    color: red;
    margin-left: 4px;
}

@media (max-width: 767px) {
    #wholesaleForm .row{
        flex-direction: column;
    }

    .name-group{
        width: 100%;
    }
}