/* :root {
    --primary-bg: #6367F0;
    --primary-bg-hover: #5050D0;
    --primary-color: #000000;
    --color-white: #ffffff;
}

.login-section {
    max-width: 450px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 100%;
    padding: 50px 30px;
    margin: calc(50vh - 260px) auto 0;
}

.text-middle-hyphen {
    width: 15px;
    display: inline-block;
    height: 2px;
    background-color: var(--primary-bg);
    position: relative;
    top: -8px;
}

.title-bottom-hr {
    max-width: 200px;
    height: 2px;
    background-color: var(--primary-bg);
    text-align: center;
    margin: 0 auto;
    opacity: 1;
}

@media screen and (max-height: 550px) {
    .login-section {
        margin-top: 20px;
    }
}

@media screen and (max-width: 560px) {
    .login-section {
        max-width: 100%;
        box-shadow: none;
    }
} */
 body {
    font-family: 'Inter', sans-serif !important;
}
.auth-wrapper {
    height: 100vh;
    overflow: hidden;
}

.auth-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.login-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 40px;
    background: #fff;
}

.login-box {
    width: 100%;
    max-width: 450px;
}
.input-light {
    color: #999 !important;
    transition: color 0.2s;
}

.input-light:focus {
    color: #000 !important;
}
/* .toggle-eye {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-10%);
    cursor: pointer;
    color: #6c757d;
    font-size: 18px;
} */

@media (max-width: 767px) {
      .auth-image{
    display: none;
  }
}
