        .password-container {
            position: relative;
            margin-bottom: 20px;
        }
       
        .caps-indicator {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #ff4757;
            color: white;
            padding: 12px 15px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(255, 71, 87, 0.3);
            margin-top: 8px;
            display: none;
            animation: slideDown 0.3s ease;
        }
        
        .caps-indicator::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #ff4757;
        }
        
        .caps-indicator.show {
            display: block;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
