#business-client-form-container {
    display: none;
    width: 90%;

    box-sizing: border-box;
    padding: 20px;
}

#business-client-form {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

#business-client-form-part-1 {
    width: 450px;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 20px;

    border-radius: 5px;
    border: 2px solid orange;
}

#business-client-form-part-2 {
    width: 450px;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 20px;

    border-radius: 5px;
    border: 2px solid orange;
}

#business-client-form-part-3 {
    width: 450px;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 20px;

    border-radius: 5px;
    border: 2px solid orange;
}

#business-client-form-part-4 {
    width: 450px;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 20px;

    border-radius: 5px;
    border: 2px solid orange;
}

.business-client-form-part-5 {
    width: 450px;
    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 20px;

    border-radius: 5px;
    border: 2px solid orange;
}

#business-client-form-add-product-button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 10px;

    border: 2px solid orange;
    border-radius: 5px;

    background: orange;
}

#business-client-form-add-product-button:hover {
    cursor: pointer;
    background-color: #FFD9A6;
}

#business-client-form-right-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#business-client-form input {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 350px;
    margin-bottom: 10px;

    border-radius: 5px;
    border: 2px solid black;
}

#business-client-form textarea {
    display: block;
    resize: none;

    width: 350px;
    height: 100px;
    margin-bottom: 10px;

    border-radius: 5px;
    border: 2px solid black;
}

.red-star {
    color: red;
}

#business-client-form-submit-button {
    box-sizing: border-box;
    padding: 10px;

    border: 2px solid orange;
    border-radius: 5px;

    background-color: orange;
}

#business-client-form-submit-button:hover {
    cursor: pointer;
    background-color: #FFD9A6;
}

/* NEEDS TO BE AT THE BOTTOM TO OVERWRITE */

#business-client-form #business-total-ttc {
    border: 3px solid green;
    background-color: #F0FFF0;
}
