.login-area {
    background: #ebebeb;
    padding: 20px 0px 20px 0px;
}
.login-svg-thumnail img {
    height: 640px;
}
.heading-text h2 {
    font-size: 28px;
    font-family: 'jost';
    font-weight: 500;
    color: #407bff;
    margin-bottom: 2px;
}
.heading-text h5 {
    font-size: 13px;
    font-family: 'poppins';
    margin: 0;
    color: #407bff;
}
.heading-text {
    z-index: 0;
}
.form_area {
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    padding: 30px 30px 30px 30px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.062);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.form_area::before {
    position: absolute;
    content: "";
    width: 300px;
    height: 300px;
    background-color: rgb(198 216 255);
    transform: rotate(45deg);
    left: -180px;
    bottom: 30px;
    z-index: 0;
    border-radius: 30px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.082);
}
.inputContainer {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.inputIcon {
    position: absolute;
    left: 8px;
}
.inputField {
    width: 100%;
    height: 48px;
    background-color: transparent;
    border-bottom: 2px solid rgb(173, 173, 173);
    color: black;
    font-size: 14px;
    font-weight: 500;
    box-sizing: border-box;
    padding-left: 37px;
    border: 1px solid #90b3ff;
    border-radius: 43px;
    font-family: 'Jost';
}
.inputField:focus {
    outline: none;
    border-bottom: 2px solid rgb(64 123 255);
}
.login-button button {
    background: #0074d1;
    border: navajowhite;
    padding: 7px 28px;
    cursor: pointer;
    font-size: 15px;
    font-family: 'jost';
    color: white;
    font-weight: 500;
    border-radius: 4px;
    transition: 0.5s;
}
.login-button button:hover {
    background: #89c9ff;
    color: #0074d1;
    transition: 0.5s;
    border-radius: 50px;
}
.forget-links a {
    text-transform: none;
    font-family: 'jost';
    font-weight: 500;
    color: #0074d1;
}
.has-error .inputField {
    border-color: #a94442;
}
.help-message {
    font-size: 12px;
    font-family: 'jost';
    color: #b70703;
    font-weight: 500;
}
.password-view-area {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.password-view-area i {
    margin-right: 4px;
    padding: 9px 6px;
    cursor: pointer;
    color: #7c7c7c;
}