body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 100px 0px;
}

.signInForm {
    display: flex;
    flex-direction: column;
    width: 400px;
}

.signInForm>* {
    margin-bottom: 10px;
}

.signInForm>*:last-child {
    margin-bottom: 0px;
}

.introductionPart {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.ip_col1 {
    height: 45px;
    margin-right: 7px;
    transition: transform 0.3s;
}

.ip_col1:hover {
    transform: rotate(360deg);
}

.ip_col2 {
    line-height: 1;
    font-weight: bold;
}

.ip_col2Row1 {
    font-size: 18px;
    margin-bottom: 2px;
}

.ip_col2Row2 {
    color: gray
}

.SI_error {
    color: var(--red);
    font-weight: bold;
    display: flex;
    align-items: center;
}

.SI_error i {
    font-size: 20px;
    margin-right: 5px;
}

.SI_emailIp,
.SI_passwordIp {
    padding: 15px 20px;
    border-radius: 100px;
    border: 0;
    background: hsl(0, 0%, 90%);
    display: block;
    width: 100%;
}

.SI_passwordIp {
    padding-right: 40px;
}

.SI_passwordIpWrap {
    position: relative;
}

.SI_passwordEyeIcon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    text-align: center;
    color: gray;
}

.SI_passwordEyeIcon:hover {
    color: black;
}

.SI_submitButton {
    font-weight: bold;
    border-radius: 100px;
    font-size: 18px;
    border: 0px;
    width: 100%;
    height: 48px;
    color: white;
    background: gray;
}

.SI_submitButton:hover {
    background: black;
}