#portal-popup {
    z-index: 100;
    position: fixed;
    bottom: 0;
    right: 0;
    transition: all 1s ease;
}

.login-form input[type="text"],
.login-form input[type="password"],
#forgot-email,
#forgot-pwd,
#return-to-login
 {
    flex-grow: 1;
    background-color: transparent !important;
    border: 0px none;
    border-bottom: 1px solid black;
    outline: none !important;
}

.login-form button[type="submit"],
.forgot-form button[type="submit"] {
    border: 0;
    padding: 10px 0 5px 0;
}

.round-border-type-1 {
    border-radius: 0px 35px;
}

.error-tooltip {
    position: relative;
}

.error-tooltip:before {
    content: '';
    position: absolute;
    left: 5px;
    border: 10px solid var(--danger-color);
    border-color: transparent transparent var(--danger-color) transparent;
    transform: translateY(-110%);
}