.page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #F5F5F5;
}

.wrapper {
    width: 90%;
}

.logo {
    display: block;
    width: 90px;
    height: 90px;
    margin-bottom: 24px;
    border-radius: 999px;
}

.page-title {
    margin-bottom: 30px;
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    line-height: 34px;
}

.form {
    padding: 0 15px;
    border-radius: 8px;
    background: #FFFFFF;
}

.form-item {
    display: flex;
    height: 40px;
    padding: 8px;
}

.form-item:not(:last-child) {
    border-bottom: 1px solid #F0F0F0;
}

.form-item label {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
}

.form-item span[class$='-icon'] {
    display: block;
    width: 16px;
    height: 16px;
}

.form-item span.phone-icon {
    background: url("../icon/phone.svg") center / cover no-repeat;
}

.form-item span.password-icon {
    background: url("../icon/password.svg") center / cover no-repeat;
}

.form-item span.city-icon {
    background: url("../icon/city.svg") center / cover no-repeat;
}

.form-item span.otp-icon {
    background: url("../icon/otp.svg") center / cover no-repeat;
}

.form-item span.invite-icon {
    background: url("../icon/invite.svg") center / cover no-repeat;
}

.form-item label {
    flex: 1;
    font-size: 14px;
    color: #666666;
    line-height: 40px;
}

.form-item input,
.form-item select {
    flex: 1;
    margin-left: 10px;
    width: 1px;
}

.form-item select {
    text-overflow: ellipsis;
}