.login-page-new {
    background: #f6f6f6;
    max-width: 100vw;
    box-sizing: border-box;
}

.login-panel-left {
    background-color: #d81a74;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    box-sizing: border-box;
}

.login-panel-left-inner {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    z-index: 2;
    gap: 40px;
}

.login-panel-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.login-panel-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.login-panel-left .btn-back {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    transition: background 0.3s, transform 0.2s;
    z-index: 10;
    cursor: pointer;
}

.login-panel-left .btn-back:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: scale(1.05);
}

.login-panel-left .btn-back i {
    margin: 0;
    font-size: 14px;
}

.logo-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    padding: 14px;
}

.logo-circle img {
    width: 60%;
    height: auto;
}

.login-panel-left h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 12px;
    color: #ffffff;
    line-height: 1.2;
    text-align: center;
}

.login-panel-text {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 24px;
    max-width: 380px;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
}

.login-panel-left .btn-register {
    width: 100%;
    max-width: 320px;
    padding: 12px 24px;
    background: #ffffff;
    color: #AF1C6C !important;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.login-panel-left .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 0;
    margin-bottom: 16px;
}

.social-links .btn-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #C71871;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 15px;
    border: none;
    transition: background 0.2s;
    text-decoration: none;
}

.social-links .btn-social:hover {
    background: #ffffff;
    color: #C71871;
}

.contact-info {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.4;
    margin-top: 0;
    padding-top: 0;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
}

.login-panel-right {
    padding: 48px 32px;
    background: #f6f6f6;
    overflow-y: auto;
    box-sizing: border-box;
    max-width: 100vw;
}

.login-card {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    box-sizing: border-box;
}

.login-card h1 {
    color: #C71871;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-card .subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.login-card .subtitle-secondary {
    color: #7a7a7a;
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.input-with-icon {
    position: relative;
    margin-bottom: 24px;
}

.input-with-icon label {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-field-wrapper {
    position: relative;
    width: 100%;
}

.input-field-wrapper .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #AF1C6C;
    font-size: 16px;
    z-index: 12;
    pointer-events: none;
}

.input-field-wrapper .form-control {
    width: 100%;
    padding: 12px 16px 12px 56px;
    border-radius: 14px;
    border: 1px solid #efebef;
    background: #ffffff;
    height: 52px;
    box-shadow: none;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.input-field-wrapper .form-control::placeholder {
    color: #c2c2c2;
}

.login-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    margin-bottom: 28px;
}

.forget-link {
    color: #AF1C6C;
    font-weight: 600;
    text-decoration: none;
}

.forget-link:hover {
    text-decoration: underline;
    color: #b01261;
}

.btn-submit {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: linear-gradient(180deg, #C71871, #b01261) !important;
    background-color: #C71871 !important;
    color: #ffffff !important;
    padding: 16px 18px;
    border-radius: 14px;
    border: none !important;
    outline: none;
    width: 100%;
    display: block;
    font-weight: 800;
    font-size: 16px;
    transition: transform 0.12s, box-shadow 0.12s;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 28px;
}

.btn-submit:hover,
.btn-submit:focus,
.btn-submit:active {
    background: linear-gradient(180deg, #b01261, #8e0e4e) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.18);
}

.continue-text {
    position: relative;
    margin: 32px 0 24px 0;
    color: #888;
    font-size: 13px;
    text-align: center;
}

.continue-text::before, 
.continue-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #e0e0e0;
}

.continue-text::before { left: 0; }
.continue-text::after { right: 0; }

.social-buttons {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-bottom: 24px;
}

.social-button {
    flex: 1;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid #AF1C6C !important;
    background: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    color: #AF1C6C !important;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.2s;
}

.social-button:hover {
    background: #fff0f6 !important;
}

.register-footer {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: #666;
}

.register-footer a {
    color: #AF1C6C;
    font-weight: 600;
    text-decoration: none;
}

.forget-modal {
    max-width: 520px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: visible;
    position: relative;
    z-index: 1070;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.forget-modal__header {
    background: #AF1C6C;
    height: 64px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    position: relative;
    z-index: 1;
}

.forget-modal__wrap { 
    position: relative; 
    padding-top: 100px;
}

.forget-modal__icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 1080;
}

.forget-modal__badge { 
    position: relative;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2F2F2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 1080; 
}

.forget-modal__badge-icon {
    font-size: 60px;
    color: #A71871;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forget-modal__badge svg { 
    display: block; 
    width: 48px; 
    height: 48px; 
}

.forget-modal__badge::before { 
    display: none !important; 
}

.forget-modal__body { 
    background: #fff;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: 24px 36px 36px 36px !important; 
}

.forget-modal__title { 
    margin-top: 0px;
    margin-bottom: 6px;
    font-weight: 800;
    color: #C71871;
    font-size: 28px; 
    letter-spacing: -0.5px; 
}

.forget-modal__subtitle { 
    margin: 0 0 16px;
    color: #333333;
    font-size: 19px;
    font-weight: 700; 
}

.forget-modal__desc { 
    color: #7e7e7e;
    font-size: 13.5px;
    margin-bottom: 24px; 
    line-height: 1.5; 
    max-width: 400px; 
    margin-left: auto; 
    margin-right: auto; 
}

.forget-modal__input-group { 
    position: relative;
    margin-bottom: 18px; 
}

.forget-modal__input-group i { 
    position: absolute;
    left: 14px;
    top: 12px;
    color: #AF1C6C;
    font-size: 16px; 
}

.forget-modal__input-group .form-control { 
    padding-left: 44px;
    border-radius: 8px;
    height: 46px; 
}

.forget-modal__submit { 
    background: #F01E89;
    color: #fff;
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15px; 
    border: none !important; 
    box-shadow: none !important; 
    outline: none !important; 
    transition: transform 0.2s, background 0.2s;
    cursor: pointer;
}

.forget-modal__submit:hover { 
    background: #b01261; 
    transform: translateY(-1px); 
}

.forget-modal__close { 
    position: absolute;
    right: 20px;
    top: 16px;
    color: #ffffff;
    opacity: 0.8;
    background: transparent;
    border: none;
    font-size: 24px;
    z-index: 1090; 
    transition: opacity 0.2s; 
    cursor: pointer;
}

.forget-modal__close:hover { 
    opacity: 1; 
}

.forget-modal__cancel { 
    background: #b8b8b8;
    color: #ffffff;
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15px;
    border: none; 
    transition: transform 0.2s, background 0.2s;
    cursor: pointer;
}

.forget-modal__cancel:hover { 
    background: #a6a6a6; 
    transform: translateY(-1px); 
}

.forget-modal__actions { 
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 28px; 
    width: 100%; 
}

.forget-modal__actions .forget-modal__cancel, 
.forget-modal__actions .forget-modal__submit { 
    flex: 1; 
    max-width: 200px; 
}

.btn-back-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F84B9A;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    border: none;
    box-shadow: 0 4px 10px rgba(248, 75, 154, 0.25);
}

@media (min-width: 992px) {
    .login-page-new {
        overflow: hidden !important;
        height: 100vh;
    }

    .login-panel-left {
        height: 100vh;
        overflow: hidden !important;
    }

    .login-panel-right {
        height: 100vh;
        overflow: hidden !important;
    }
}

@media (max-width: 991.98px) {
    .login-page-new .row {
        display: flex;
        flex-direction: column;
    }

    .login-panel-right {
        order: 1;
        padding: 32px 24px 48px;
        height: auto;
    }

    .login-panel-left {
        order: 2;
        display: flex !important;
        padding: 48px 24px;
        height: auto;
    }

    .login-panel-left .btn-back {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .login-panel-right {
        padding: 24px 16px !important;
    }

    .login-panel-left {
        padding: 32px 16px !important;
        width: 100% !important;
    }

    .login-panel-left-inner {
        gap: 24px !important;
        max-width: 100% !important;
    }

    .login-panel-left h5 {
        font-size: 18px !important;
    }

    .login-panel-left .btn-register {
        max-width: 100% !important;
        width: 100% !important;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .social-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .forget-modal__actions { 
        flex-direction: column-reverse;
        gap: 12px; 
    }

    .forget-modal__actions .forget-modal__cancel, 
    .forget-modal__actions .forget-modal__submit { 
        min-width: 100%; 
        max-width: 100%; 
    }

    .forget-modal { 
        max-width: 92%; 
    }

    .forget-modal__badge { 
        width: 88px;
        height: 88px; 
    }

    .forget-modal__icon { 
        top: -44px; 
    }

    .forget-modal__wrap { 
        padding-top: 50px; 
    }

    .forget-modal__body { 
        padding: 20px 16px 24px 16px !important; 
    }

    .forget-modal__title { 
        font-size: 22px; 
    }
}