.login-btn-custom {
    border-radius: 10px !important;
    font-weight: 600;
    min-height: 48px;
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #d1d5db !important;
}

.login-btn-custom:hover {
    background: #f8fbff !important;
    border-color: #3264ff !important;
}

.download-app-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 103, 246, 0.12);
}

.inax {
    color: #4d4c4d;
    margin-right: 25px;
}

.pro {
    color: #00bde6;
}

body.login-page {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #5d657b;
    overflow-x: hidden;
    background: url('/image/login_background.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body.login-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 0;
}

body.login-page .container,
body.login-page .signin-wrapper {
    position: relative;
    z-index: 1;
}

.signin-wrapper {
    background: rgba(255, 255, 255, 0.88);
    padding: 24px 36px;
    min-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.signin-wrapper .form-wrapper {
width: 100%;
}

.signin-wrapper .singin-option button {
font-size: 16px;
font-weight: 600;
}

.signin-wrapper .singin-option a:hover {
text-decoration: underline;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .signin-wrapper .singin-option button {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .signin-wrapper {
        padding: 28px 32px;
    }

        .signin-wrapper .singin-option button {
            padding-left: 30px;
            padding-right: 30px;
        }
}

@media (max-width: 767px) {
    .signin-wrapper {
        padding: 20px;
    }

        .signin-wrapper .singin-option button {
            width: 100%;
        }
}

@media only screen and (min-width: 550px) and (max-width: 767px) {
    .signin-wrapper .singin-option button {
        width: auto;
    }
}

.password-field {
    position: relative;
}

    .password-field input {
        padding-right: 52px !important;
    }

.toggle-password {
    position: absolute;
    right: 14px;
    bottom: 12px;
    border: none;
    background: transparent;
    color: #7b8190;
    cursor: pointer;
    padding: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.toggle-password i {
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
}

.toggle-password:hover {
    color: #2f67f6;
}

.download-app-wrap {
    position: relative;
    margin-top: 28px !important;
}

.download-app-btn {
    position: relative;
    min-height: 82px;
    border: 3px solid #22b8f0;
    border-radius: 16px;
    background: #22b8f0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    box-shadow: 0 0 0 4px rgba(34, 184, 240, 0.12), 0 10px 24px rgba(50, 100, 255, 0.20);
    transition: all 0.25s ease;
    animation: downloadPulse 1.8s infinite;
}

    .download-app-btn:hover {
        transform: translateY(-2px);
        background: #1da9db; /* Slightly darker/different blue for hover depth if needed, or keep same */
        box-shadow: 0 0 0 6px rgba(34, 184, 240, 0.18), 0 14px 30px rgba(50, 100, 255, 0.28);
    }

.download-icon {
    width: 46px;
    height: 46px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    padding-right: 16px;
    font-size: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-text {
    flex: 1;
    text-align: left;
    line-height: 1.25;
}

    .download-text strong {
        display: block;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 0.3px;
    }

    .download-text small {
        display: block;
        margin-top: 4px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 400;
    }

.download-arrow {
    font-size: 24px;
    flex-shrink: 0;
}

.recommend-badge {
    position: absolute;
    left: 18px;
    top: -22px;
    z-index: 3;
    background: linear-gradient(135deg, #ff9800, #ff7a00);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(255, 152, 0, 0.35);
    pointer-events: none;
}

    .recommend-badge::before {
        content: "";
        position: absolute;
        left: 10px;
        top: -11px;
        width: 8px;
        height: 18px;
        border-radius: 10px;
        background: #ff9800;
        transform: rotate(-25deg);
    }

    .recommend-badge::after {
        content: "";
        position: absolute;
        left: 34px;
        bottom: -8px;
        border-top: 8px solid #ff7a00;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
    }

@keyframes downloadPulse {
    0% {
        box-shadow: 0 0 0 4px rgba(34, 184, 240, 0.12), 0 10px 24px rgba(50, 100, 255, 0.20);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(34, 184, 240, 0.22), 0 14px 30px rgba(50, 100, 255, 0.30);
    }

    100% {
        box-shadow: 0 0 0 4px rgba(34, 184, 240, 0.12), 0 10px 24px rgba(50, 100, 255, 0.20);
    }
}

@media (max-width: 576px) {
    .download-app-wrap {
        margin-top: 30px !important;
    }

    .recommend-badge {
        left: 16px;
        top: -20px;
        font-size: 12px;
        padding: 6px 10px;
    }

    .download-app-btn {
        min-height: 78px;
        padding: 18px 14px;
        gap: 12px;
    }

    .download-icon {
        width: 38px;
        height: 38px;
        font-size: 26px;
        padding-right: 12px;
    }

    .download-text strong {
        font-size: 14px;
    }

    .download-text small {
        font-size: 11px;
    }

    .download-arrow {
        font-size: 20px;
    }
}

.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-contact-item {
    min-width: 190px;
    height: 58px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px 8px 10px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

    .floating-contact-item:hover {
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
    }

.floating-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .floating-icon i {
        font-size: 22px;
    }

.zalo-icon {
    font-size: 22px;
    font-weight: 900;
}

.floating-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

    .floating-text strong {
        font-size: 14px;
        font-weight: 800;
    }

    .floating-text small {
        margin-top: 2px;
        font-size: 12px;
        opacity: 0.9;
    }

.call-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.zalo-btn {
    background: linear-gradient(135deg, #0084ff, #0068d9);
}

@media (max-width: 576px) {
    .floating-contact {
        right: 12px;
        bottom: 12px;
    }

    .floating-contact-item {
        min-width: 160px;
        height: 52px;
    }

    .floating-icon {
        width: 36px;
        height: 36px;
    }

    .floating-text strong {
        font-size: 13px;
    }

    .floating-text small {
        font-size: 11px;
    }
}
/* ===== Floating contact: Call / Zalo ===== */

body.login-page {
    min-height: 100vh;
}

.login-page .container {
    padding-top: 24px;
    padding-bottom: 130px;
}

.signin-wrapper {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

    .signin-wrapper .form-wrapper {
        width: 100%;
    }

    .signin-wrapper img[alt="INAX PRO"] {
        max-width: 260px;
        width: 70%;
        height: auto;
    }

.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-contact-item {
    min-width: 190px;
    height: 58px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px 8px 10px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

    .floating-contact-item:hover {
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
    }

.floating-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .floating-icon i {
        font-size: 22px;
    }

.zalo-icon {
    background: #fff;
    overflow: hidden;
}

    .zalo-icon img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

.floating-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

    .floating-text strong {
        font-size: 14px;
        font-weight: 800;
    }

    .floating-text small {
        margin-top: 2px;
        font-size: 12px;
        opacity: 0.9;
    }

.call-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.zalo-btn {
    background: linear-gradient(135deg, #0084ff, #0068d9);
}


@media (max-width: 576px) {
    body.login-page {
        background-position: center;
    }

    .login-page .container {
        min-height: 100vh !important;
        padding: 16px 12px 105px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .signin-wrapper {
        padding: 18px 14px;
        border-radius: 16px;
        max-width: 100%;
    }

        .signin-wrapper img[alt="INAX PRO"] {
            max-width: 190px;
            width: 62%;
        }

        .signin-wrapper h3 {
            font-size: 20px;
            margin-bottom: 16px !important;
        }

    .input-style-1 {
        margin-bottom: 14px;
    }

    .download-app-btn {
        min-height: 78px;
        padding: 18px 12px;
        gap: 10px;
    }

    .download-text strong {
        font-size: 14px;
        line-height: 1.25;
    }

    .download-text small {
        font-size: 11px;
    }

    .download-icon {
        width: 36px;
        height: 36px;
        font-size: 24px;
        padding-right: 10px;
    }

    .download-arrow {
        font-size: 18px;
    }

    .floating-contact {
        left: 10px;
        right: 10px;
        bottom: 10px;
        flex-direction: row;
        gap: 10px;
    }

    .floating-contact-item {
        flex: 1;
        min-width: 0;
        height: 58px;
        border-radius: 16px;
        padding: 8px 10px;
        justify-content: center;
    }

    .floating-icon {
        width: 36px;
        height: 36px;
    }

    .zalo-icon img {
        width: 30px;
        height: 30px;
    }

    .floating-text strong {
        font-size: 13px;
    }

    .floating-text small {
        font-size: 10px;
    }
}
