.signUp__group {
    display: flex;
    flex-wrap: wrap;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 16px;
}

.signUp__group__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 470px;
    min-height: 356px;
    justify-content: space-around;
}

.signUp__group__cont {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.signUp__group__submit {
    font-size: 18px;
    line-height: 28px;
    height: 56px;
    min-width: 175px;
    border-radius: 16px;
    background: #007cff;
    color: #fff;
    border: 0;
    cursor: pointer;
    transition: 0.15s ease-out;
}

.signUp__group__submit:hover {
    background: #000000;
    color: #fff;
}

.signUp__group__policy {
    flex: 1;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    padding: 0px;
    margin: 0px;
    color: rgb(0, 0, 0);
}

.signUp__group__input {
    height: 50px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #999;
}

.signUp__group__ul {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.title {
    font-size: 24px;
}