        #form-switch-container {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }

        #move-to-first-btn, #move-to-second-btn {
            background-color: #f44336;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }

        #move-to-first-btn:hover, #move-to-second-btn:hover {
            background-color: #e53935;
        }
