
/* ===== Login Section ===== */
/* Login Right Section */
.login-section .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}
.login-section .login-content-left {
    padding: 70px;
    height: 100vh;
    background-image: linear-gradient(to right, var(--primary-color) , var(--secondary-color));
    position: relative;
}
.login-section .login-content-left h2 {
    font-size: 46px;
}
.login-section .login-content-left .login-img-box {
    position: relative;
}
.login-section .login-content-left h2 {
    margin-bottom: 20px;
}
.login-section .login-content-left p {
    margin-bottom: 30px;
}
.login-section .login-content-left .login-img-box .login-img-1 {
    width: 87%;
}
.login-section .login-content-left .login-img-box .login-img-2 {
    position: absolute;
    top: 33%;
    right: 0;
    width: 46%;
    box-shadow: var(--box-shadow);
    border-radius: 16px;
}
.login-section .login-content-left .version-bagde {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: auto;
    margin: auto;
    text-align: center;
    font-size: 14px;
}

/* Login Right Section */
.login-section .login-content-right {
    padding: 70px 150px;
    height: 100vh;
    max-height: 100vh;
    overflow: auto;
    background-color: var(--white);
}
.login-section .login-content-right .logo {
    margin-bottom: 70px;
}
.login-section .login-content-right h2 {
    color: var(--black);
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 50px;
}
.login-section .login-content-right .login-form .form-label {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}
.login-section .login-content-right .login-form .form-control {
    height: 66px;
    border-radius: 10px;
    border: 1px solid #EBEBEB;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}
.login-section .login-content-right .login-form .form-control::placeholder {
    color: #C7CBD4;
    font-weight: 500;
    font-size: 16px;
}
.login-section .login-content-right .login-form .input-group-append {
    border: 1px solid #EBEBEB;
    height: 66px;
    padding: 20px;
    border-radius: 0 10px 10px 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-section .login-content-right .login-form .eye-icon {
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
}
.login-section .login-content-right .login-form .input-group-append a:focus {
    outline: none;
}
.login-section .login-content-right .login-form .input-group-append .eye-icon:focus {
    outline: none;
}
.login-section .login-content-right .login-form .input-group-append:hover .eye-icon {
    transform: scale(1.1);
}
.login-section .login-content-right .login-form .forgot-password-link {
    margin-bottom: 30px;
    margin-top: 10px;
    text-decoration: none;
    color: var(--black);
    text-align: right;
    display: block;
    transition: var(--transition);
}
.login-section .login-content-right .login-form .forgot-password-link:hover {
    color: var(--primary-color);
}
.login-section .login-content-right .login-form .forgot-password-link:focus {
    color: var(--primary-color);
}
.login-section .login-content-right .login-form .terms-and-condition {
    color: #8A8A8A;
    font-size: 16px;
    margin-bottom: 20px;
}
.login-section .login-content-right .login-form .terms-and-condition .terms-of-services {
    margin-bottom: 30px;
    margin-top: 10px;
    font-weight: 500;
    text-decoration: underline;
    color: var(--black);
    transition: var(--transition);
}
.login-section .login-content-right .login-form .terms-and-condition .terms-of-services:hover {
    color: var(--primary-color);
}
.login-section .login-content-right .login-form .terms-and-condition .terms-of-services:focus {
    color: var(--primary-color);
}
.login-section .login-content-right .login-form .login-btn {
    height: 68px;
    border-radius: 34px;
    width: 100%;
    background-image: linear-gradient(to right, var(--primary-color) , var(--secondary-color));
    background-size: 200% 100%;
    background-position: 0% 50%;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    transition: all 0.6s ease;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.login-section .login-content-right .login-form .login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.login-section .login-content-right .login-form .login-btn:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 80, 222, 0.4);
}

.login-section .login-content-right .login-form .login-btn:hover::before {
    left: 100%;
}

.login-section .login-content-right .login-form .login-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(47, 80, 222, 0.3);
}
.or-label {
    color: #8A8A8A;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
.login-section .login-content-right .login-form .secondary-btn {
    height: 68px;
    border-radius: 34px;
    width: 100%;
    font-weight: 700;
    border: 1px solid #C7CBD4;
    font-size: 18px;
    color: var(--black);
    transition: var(--transition);
    margin-bottom: 20px;
}
.login-section .login-content-right .login-form .secondary-btn:hover {
    border-color: var(--primary-color);
}
.login-section .login-content-right .login-form .secondary-btn .icon-img {
    margin-right: 7px;
}
