.login_bg {
    background-image: url("/User/assets/images/login/bg-img.svg");
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 70px -70px;
    /* height: 105vh; */
}

.login-forgot-password, .login-sign-up {
    color: #E50065 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.box {
    margin: 2em 1em;
    padding: 3em 2em;

    border-radius: 12px;

    background: #fff;
    box-shadow: 2px 0 15px -2px rgba(0, 0, 0, 0.2);

    display: grid;
    row-gap: 2em;
}

.box-header {
    display: grid;
    row-gap: 2em;
}

.box-header > h1 {
    margin: 0;

    font-size: 1.563em;
    font-weight: 900;

    color: #E50065;
}

.box-header > p {
    font-size: 0.8em;
    line-height: 1.8;
}

.box-body > form {
    display: grid;
    row-gap: 1.6em !important;
}

/* Floating Label */

.floating-label-input {
    position: relative;

    background: #fff;
}

.input-text {
    width: 100%;

    padding: 1em;

    background: #fff;
    border: 1px solid #c2c2c2;

    border-radius: 5px;
}

.input-text::placeholder {
    opacity: 0;
}

.floating-label-input > label {
    position: absolute;

    top: 50%;
    left: 1em;

    color: #999999;
    background: #fff;

    transform: translateY(-50%);

    cursor: text;

    transition: all 0.3s ease-out;
}

.input-text:focus {
    outline: 2px solid #E50065;
}

.input-text:focus + label,
.input-text:not(:placeholder-shown) + label {
    padding: 0 0.5em;

    top: 0;
    left: 0.8em;

    font-size: 0.8em;
    font-weight: 500;
}

.input-text:focus + label {
    color: #E50065;
}

/* Floating Label */

.password-manager {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.save-password {
    display: flex;
    gap: 0.6em;

    font-size: 0.8em;

    cursor: pointer;
}

.forgot-password {
    font-size: 0.8em;
}

.button-group > input[type="submit"] {
    padding: 1em;

    width: 100%;

    font-weight: 600;

    background-color: #E50065;
    color: white;
    border: none;

    border-radius: 5px;

    cursor: pointer;
}

.box-footer > p {
    font-size: 0.8em;
    line-height: 1.8;

    text-align: center;
}

/* password field start */
#eye-hide{
    position: absolute;
    top: 40%;
    right: 1em;
    cursor: pointer;
}

#eye-show{
    position: absolute;
    top: 40%;
    right: 1em;
    display: none;
    cursor: pointer;
}
/* password field end */
