.register {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255 255 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
}

.register .logo {
    width: 70px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register .logo img {
    width: 100%;
}

.register .logo .text {
    font-size: 16px;
}

.register .headText {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0 50px 0;
}

.register .headText span {
    color: #32ADE6;
    font-size: 28px;
}

.register .field {
    width: 80%;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    margin: 0 0 15px 0;
}

.register .field .text {
    font-size: 16px;
    /* font-weight: bold; */
}

.register .field .input {
    width: -webkit-fill-available;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    border: solid 1px #D9D9D9;
    border-radius: 10px;
    background-color: #F2F2F7;
}

.register .field .error {
    font-size: 14px;
    color: red;
    display: none;
}

.register .field[status="error"] .error {
    font-size: 14px;
    color: red;
    display: unset;
}

.register .field[status="error"] .input {
    border-color: red;
}

.register .field .input span {
    font-variation-settings: 'FILL' 1;
    color: rgb(0 0 0 / 60%);
}

.register .field .input input {
    width: 100%;
    font-size: 16px;
    border: none;
    background: transparent;
}

.register button[name="save"] {
    width: 80%;
    max-width: 390px;
    height: 45px;
    min-height: 45px;
    border: none;
    background-color: #32ADE6;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    margin: 30px 0 10px 0;
}

.register button[name="cancel"] {
    width: 80%;
    max-width: 390px;
    height: 45px;
    min-height: 45px;
    border: none;
    background-color: #E5E5EA;
    color: black;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0 20px 0;
}

.register .other {
    width: 85%;
    height: 20px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0 20px 0;
}

.register .other .line {
    position: absolute;
    width: 85%;
    max-width: 390px;
    height: 1px;
    border: solid rgb(0 0 0 / 20%);
    border-width: 1px 0 0 0;
}

.register .other .text {
    padding: 5px;
    background-color: white;
    position: absolute;
}

.register .with {
    width: calc(85% - 10px);
    padding: 8px 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    border: solid 1px #D9D9D9;
    border-radius: 10px;
    /* background-color: #F2F2F7; */
    margin: 10px 0 0 0;
    background-color: white;
}

.register .with .icon {
    width: 30px;
}

.register .with .text {
    font-size: 14px;
    font-weight: bold;
}