#body {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.login-form-container {
    width: 100vw;
    height: 100vh;
    transform: translateY(20.09%);
}

.login-form-wrap {
    transform: scale(1.1);
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    padding: 25px 24px 24px;
    display: flex;
    flex-direction: column;
    background-color: var(--custom_action_fill);
    border-radius: 10px;
    max-width:346px;
}

.login-form-logo {
    width: 192px;
    height: auto;
    margin: auto;
}

#logerror{
    color:rgb(255, 0, 0);
    text-align: center;
    width:100%
}

.login-form-title {
    font-size: 19px;
    font-weight: 500;
    color: white;
    margin-bottom: 4px;
}

.login-form-group {
    margin-bottom: 6px;
}

.login-form-label {
    margin-bottom: 2px;
    color: white;
    font-size: 11px;
    font-weight: 500;
}

.login-form-input {
    width: 100%;
    border: 0.5px solid #9D9FA2;
    border-radius: 4px;
    background-color: white;
    outline: none;
    padding: 6px;
}

.login-form-password-label a{
    color: white;
}

.login-form-password-label {
    color: white;
    display: flex;
    justify-content: space-between;
}

.login-form-password-field {
    position: relative;
}

.login-form-password-visible-icon {
    color: var(--custom_action_fill);
    cursor: pointer;
    font-size: 12px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.login-form-btn {
    margin-top: 17px;
    margin-bottom: 12px;
    width: 100%;
    height: 32.56px;
    background-color: white;
    border: 0px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--custom_action_fill);
    font-size: 12px;
    font-weight: 700;
}

.login-form-btn.disabled{
    color: var(--custom_toggle_off);
}

.login-form-description {
    max-width: 210px;
    text-align: center;
    color: white;
    font-size: 11px;
    font-weight: 500;
    margin: auto;
}

.login-form-description a {
    color: white;
    text-decoration: underline;
}

.login-form-header {
    color: white;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top:5px;
}

.login-form-error-message {
    color: white;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 4px;
}

.error{
    border:solid 0.5px red;
}

.forgot-password{
    text-align:end;
    cursor:pointer;
    color:white;
    font-size:10px;
    margin-top:3px;
}

.forgot_password_description{
    margin-bottom: 10px;
    margin-top: 5px;
}


.reset-form-password-label a{
    color: white;
}

.reset-form-password-label {
    color: white;
    display: flex;
    justify-content: space-between;
}

.reset-form-password-field {
    position: relative;
}

.reset-form-password-visible-icon {
    color: var(--custom_action_fill);
    cursor: pointer;
    font-size: 12px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.reset-form-confirmpassword-label a{
    color: white;
}

.reset-form-confirmpassword-label {
    color: white;
    display: flex;
    justify-content: space-between;
}

.reset-form-confirmpassword-field {
    position: relative;
}

.reset-form-confirmpassword-visible-icon {
    color: var(--custom_action_fill);
    cursor: pointer;
    font-size: 12px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.svg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.responsive-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    overflow: visible;
}

#expireError{
    color:red;
}