/* Login Overlay */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f172a;
    background-image: url('../assets/chul018.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 440px;
    padding: 48px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    /* Add opacity to card to see background better */
    border-radius: 20px;
    margin-bottom: 0%;
}

.login-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.login-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.login-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.login-form .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.login-container .form-group input {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(135, 206, 235, 0.8);
    color: #555555;
}

.login-container .form-group input::placeholder {
    color: rgba(180, 180, 180, 0.9);
}

#loginLogoImg {
    opacity: 0.7;
}

.remember-id-row {
    text-align: left;
    margin-bottom: 16px;
}

.remember-id-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
}

.remember-id-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: rgba(56, 189, 248, 0.9);
    flex-shrink: 0;
}

.login-container .btn-premium {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.65), rgba(139, 92, 246, 0.65));
    box-shadow: 0 8px 16px rgba(56, 189, 248, 0.1);
    justify-content: center;
}

.w-100 {
    width: 100%;
}

.login-footer {
    margin-top: 32px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

.blurred {
    filter: blur(10px);
    pointer-events: none;
}

/* Password Toggle Style */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input {
    width: 100%;
    padding-right: 40px !important;
}

.input-with-icon i {
    position: absolute;
    right: 12px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.input-with-icon i:hover {
    color: var(--accent-blue);
}

