/* Login Page Styles */
.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.login-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.login-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #6366f1;
    top: -150px;
    left: -150px;
    animation: blobMove1 8s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    bottom: -100px;
    right: -100px;
    animation: blobMove2 10s ease-in-out infinite;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #06b6d4;
    top: 40%;
    left: 40%;
    animation: blobMove3 12s ease-in-out infinite;
}

@keyframes blobMove1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(30px, 20px) scale(1.05)
    }
}

@keyframes blobMove2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(-20px, 30px) scale(1.08)
    }
}

@keyframes blobMove3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(15px, -15px) scale(1.03)
    }
}

.login-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 1rem;
}

.login-card {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .4);
    animation: slideUp .5s ease;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, .4);
}

.login-logo svg {
    width: 34px;
    height: 34px;
    color: #fff;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.login-subtitle {
    font-size: .85rem;
    color: #94a3b8;
    margin-top: .25rem;
}

.login-form .form-label {
    color: #cbd5e1;
}

.login-form .form-control {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15);
    color: #fff;
    padding-left: 2.75rem;
}

.login-form .form-control::placeholder {
    color: #64748b;
}

.login-form .form-control:focus {
    border-color: #6366f1;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .25);
}

.input-icon-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #64748b;
    pointer-events: none;
}

.toggle-pw {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    padding: .2rem;
    display: flex;
}

.toggle-pw:hover {
    color: #94a3b8;
}

.toggle-pw svg {
    width: 16px;
    height: 16px;
}

.btn-login {
    width: 100%;
    padding: .8rem;
    border-radius: .75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: all .2s;
    margin-top: 1.5rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, .45);
}

.btn-login svg {
    width: 18px;
    height: 18px;
}

.login-hints {
    margin-top: 1.5rem;
    text-align: center;
}

.login-hints p {
    font-size: .75rem;
    color: #64748b;
    margin-bottom: .5rem;
}

.hint-pills {
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.hint-pill {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #94a3b8;
    padding: .3rem .8rem;
    border-radius: 999px;
    font-size: .75rem;
    cursor: pointer;
    transition: all .2s;
}

.hint-pill:hover {
    background: rgba(99, 102, 241, .3);
    color: #fff;
    border-color: #6366f1;
}