.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 650px;
    font-size: 1rem;
}

.detailsTable {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.details-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.companyDetailsTable {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.detail {
    display: flex;
    padding-right: 30px;
    padding-bottom: 15px;
    flex-direction: column;
}

.name, .value {
    min-width: 190px;
    display: flex;
    padding: 8px;
}

.value {
    background-color: #ffffff;
    height: 30px;
}

.name {
    padding-left: 0;
    margin-right: 10px;
}

.pi {
    font-size: 13px;
}

.separator {
    border-bottom: 1px solid #e5e5e5;
    display: block;
    font-size: 1.5rem;
    width: 100%;
}

.form-container {
    width: 700px;
}

.submit-btn {
    cursor: pointer !important;
    width: 685px !important;
    margin-top: 20px !important;
    margin-bottom: 40px !important;
}

textarea {
    resize: none;
}

.fields-info {
    margin-bottom: 5px;
}

.required-field {
    border-color: #e24c4c;
}

.invalid-field {
    border-color: #ffa500;
}

.terms {
    flex-direction: row;
    align-items: center;
}

.terms input {
    width: 18px;
    height: 18px;
    margin: 0 9px 0 0;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

h3.warningMessage {
    text-align: center;
    color: red;
}