body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--version-2-main-color, #4589FF);
    font-family: Open Sans;
}

.sign-up-logo {
    position: absolute;
    top: 80px;
    left: 77px;
}

.title-margin-bottom {
    display: flex;
    height: 1px;
    width: 100px;
    margin-bottom: 35px;
    border-bottom: 3px solid rgb(69, 137, 255);
    align-items: center;
}

.sign-up-container {
    display: flex;
    padding: 48px 88px;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background: var(--white, #FFF);
    width: 35%;
}

.sign-up-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
}

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

}

.sign-up-input-fields-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sign-up-button {
    border-radius: 8px;
    background: var(--version-2-main-color, #4589FF);
    padding: 10px 20px;
    border: none;
    color: #FFF;
    cursor: pointer;
}

.sign-up-button-disabled {
    border-radius: 8px;
    background: var(--version-2-main-color, #c2d8ff);
    padding: 10px 20px;
    border: none;
    color: #FFF;
}

.sign-up-button:hover {
    background: var(--ligth-blue, #005DFF);
}

.sign-up-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sign-up-legal-container {
    margin-bottom: 20px;
}

.sign-up-header-container {
    width: 100%;
    display: flex;
    margin-right: 75px;
    align-items: center;
}

.sign-up-title {
    color: #000;

    text-align: center;
    font-family: Open Sans;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}