﻿
/* Your existing styles here - copy all from your design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(145deg, #bbbdbf 0%, #f7f9fa 45%, #bbd6ed 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.bg-orb {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    backdrop-filter: blur(2px);
    animation: float 18s infinite ease-in-out;
}

.orb1 {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,240,0.1), transparent 70%);
}

.orb2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle at 70% 70%, rgba(200,230,255,0.08), transparent 70%);
    animation-delay: -5s;
}

.orb3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 20%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 80%);
    animation-duration: 24s;
}

@keyframes float {
    0% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(30px,40px) scale(1.05);
    }

    100% {
        transform: translate(-10px,-10px) scale(1);
    }
}

.content-wrapper {
    flex: 1 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.glass-header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 30px -10px rgba(0, 20, 40, 0.3);
    padding: 0.6rem 0;
    transition: all 0.2s;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.company-logo {
    max-height: 85px;
    width: auto;
    transition: transform 0.2s;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

    .company-logo:hover {
        transform: scale(1.03);
    }

.brand-tag {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(130deg, #0b2b4f, #1f4e7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.support-chip {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    padding: 0.5rem 1.0rem;
    font-size: 0.8rem;
    width: auto;
    font-weight: 500;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    transition: 0.2s;
    border: 1px solid rgba(255,255,255,0.5);
}

    .support-chip:hover {
        background: white;
        box-shadow: 0 10px 18px rgba(0,30,60,0.15);
    }

    .support-chip i {
        color: #0b2b4f;
        margin-right: 2px;
        width: 1.1rem;
    }

    .support-chip a {
        text-decoration: none;
        color: #0f3a5e;
        font-weight: 600;
    }

        .support-chip a:hover {
            color: #02233b;
        }

.login-card-modern {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 36px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 35px 60px -15px rgba(0,25,50,0.4);
    transition: transform 0.25s, box-shadow 0.3s;
    max-width: 520px;
    width: 100%;
    margin: 0rem auto;
    overflow: hidden;
}

    .login-card-modern:hover {
        box-shadow: 0 45px 70px -15px #02192e;
        transform: scale(1.01);
    }

.login-header-gradient {
    background: linear-gradient(102deg, #16446b, #1f6090);
    padding: 0.3rem 0rem;
    text-align: center;
    color: white;
}

    .login-header-gradient i {
        font-size: 1.8rem;
        opacity: 0.9;
        margin-bottom: 0.5rem;
    }

    .login-header-gradient h3 {
        font-weight: 700;
        letter-spacing: -0.01em;
        margin: 0;
        font-size: 1.8rem;
    }

.login-body-clean {
    padding: 2.2rem 2rem;
}

.form-label-custom {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1b3a5e;
    margin-bottom: 0.4rem;
}

.form-control-modern {
    border: 1.5px solid #dbe1e9;
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    background: white;
    transition: all 0.15s;
}

    .form-control-modern:focus {
        border-color: #1f6090;
        box-shadow: 0 0 0 4px rgba(31,96,144,0.2);
        outline: none;
    }

.input-group-modern {
    border-radius: 20px;
    overflow: hidden;
}

    .input-group-modern .form-control-modern {
        border-radius: 20px 0 0 20px;
        border-right: none;
    }

.input-group-text-modern {
    background: linear-gradient(145deg, #1f6090, #16446b);
    border: none;
    color: white;
    padding: 0 1.3rem;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    transition: 0.15s;
    font-size: 1.1rem;
}

    .input-group-text-modern:hover {
        background: #123a59;
    }

.captcha-box {
    background: linear-gradient(130deg, #eef3fa, #dde6f0);
    border-radius: 15px;
    padding: 0.5rem 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    border: 1px solid rgba(0,0,0,0.05);
}

.captcha-img-placeholder {
    background: #0a2c44;
    color: white;
    font-weight: 500;
    font-size: 1.0rem;
    letter-spacing: 8px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-family: 'Courier New', monospace;
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.2);
}

.btn-refresh-circle {
    background: white;
    border: 2px solid #1f6090;
    color: #1f6090;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    font-size: 1.4rem;
}

    .btn-refresh-circle:hover {
        background: #1f6090;
        color: white;
        transform: rotate(180deg);
    }

.btn-login-grad {
    background: linear-gradient(120deg, #1d4668, #0b2b4f);
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    width: 100%;
    transition: 0.2s;
    box-shadow: 0 18px 30px -12px #0b2b4f;
    margin-top: 1.2rem;
}

    .btn-login-grad:hover {
        background: linear-gradient(120deg, #144769, #0a253b);
        transform: translateY(-3px);
        box-shadow: 0 24px 35px -10px #072136;
    }

.footer-links-simple {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 0.8rem;
    flex-wrap: wrap;
}

    .footer-links-simple a {
        color: #1b3a5e;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        border-bottom: 2px solid transparent;
        transition: 0.15s;
    }

        .footer-links-simple a:hover {
            border-bottom-color: #1f6090;
            color: #0a253b;
        }

.status-message {
    background: #e6f0fa;
    border-left: 6px solid #1f6090;
    padding: 0.8rem 1.2rem;
    border-radius: 40px;
    font-weight: 500;
    color: #10344e;
    margin: 1.2rem 0 0;
    display: none;
}

    .status-message.error {
        background: #ffe6e6;
        border-left-color: #dc3545;
        color: #721c24;
    }

    .status-message.success {
        background: #d4edda;
        border-left-color: #28a745;
        color: #155724;
    }

.modern-footer {
    background: rgba(13, 33, 55, 0.85);
    backdrop-filter: blur(8px);
    color: #e0edfa;
    padding: 0.7rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
    position: relative;
    width: 100%;
    margin-top: auto;
    text-align: center;
}

    .modern-footer .container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px;
    }

    .modern-footer a {
        color: #b6d6ff;
        text-decoration: none;
        font-weight: 500;
        padding: 0 0.5rem;
        transition: 0.15s;
        display: inline-block;
    }

        .modern-footer a:hover {
            color: white;
            text-decoration: underline;
        }

.separator-dot {
    color: #6a8fb1;
    padding: 0 0.3rem;
    display: inline-block;
}

.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.spinner-big {
    width: 65px;
    height: 65px;
    border: 6px solid #dde2e9;
    border-top-color: #1f6090;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

.input-group-text-modern i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 576px) {
    .brand-tag {
        font-size: 1.2rem;
    }

    .support-chip {
        font-size: 0.8rem;
        padding: 0.3rem 0.9rem;
    }

    .login-header-gradient {
        padding: 1.3rem 1rem;
    }

        .login-header-gradient h3 {
            font-size: 1.4rem;
        }

    .login-body-clean {
        padding: 1.5rem 1.2rem;
    }

    .btn-refresh-circle {
        width: 50px;
        height: 50px;
    }

    .captcha-box {
        height: 55px;
    }
}

@media (max-width: 380px) {
    .footer-links-simple {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
}


